mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2024-11-10 12:16:12 +00:00
small change the user agent OS string
This commit is contained in:
parent
394a67fe33
commit
36491c47d8
1 changed files with 2 additions and 2 deletions
|
@ -51,11 +51,11 @@ class GoogleAnalytics():
|
||||||
def getUserAgentOS(self):
|
def getUserAgentOS(self):
|
||||||
|
|
||||||
if xbmc.getCondVisibility('system.platform.osx'):
|
if xbmc.getCondVisibility('system.platform.osx'):
|
||||||
return "OSX"
|
return "Mac OS X"
|
||||||
elif xbmc.getCondVisibility('system.platform.ios'):
|
elif xbmc.getCondVisibility('system.platform.ios'):
|
||||||
return "iOS"
|
return "iOS"
|
||||||
elif xbmc.getCondVisibility('system.platform.windows'):
|
elif xbmc.getCondVisibility('system.platform.windows'):
|
||||||
return "Windows"
|
return "Windows NT"
|
||||||
elif xbmc.getCondVisibility('system.platform.android'):
|
elif xbmc.getCondVisibility('system.platform.android'):
|
||||||
return "Android"
|
return "Android"
|
||||||
elif xbmc.getCondVisibility('system.platform.linux.raspberrypi'):
|
elif xbmc.getCondVisibility('system.platform.linux.raspberrypi'):
|
||||||
|
|
Loading…
Reference in a new issue