From 36491c47d8c317c1b09b33daf1ab6dc31398af85 Mon Sep 17 00:00:00 2001 From: shaun Date: Tue, 18 Oct 2016 18:30:04 +1100 Subject: [PATCH] small change the user agent OS string --- resources/lib/ga_client.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/resources/lib/ga_client.py b/resources/lib/ga_client.py index b8b1746e..369b0ab7 100644 --- a/resources/lib/ga_client.py +++ b/resources/lib/ga_client.py @@ -51,11 +51,11 @@ class GoogleAnalytics(): def getUserAgentOS(self): if xbmc.getCondVisibility('system.platform.osx'): - return "OSX" + return "Mac OS X" elif xbmc.getCondVisibility('system.platform.ios'): return "iOS" elif xbmc.getCondVisibility('system.platform.windows'): - return "Windows" + return "Windows NT" elif xbmc.getCondVisibility('system.platform.android'): return "Android" elif xbmc.getCondVisibility('system.platform.linux.raspberrypi'):