add server id to startup event

This commit is contained in:
sfaulds 2016-10-27 15:43:54 +11:00
parent 1c1ddd4f49
commit fff3790119
2 changed files with 8 additions and 3 deletions

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?> <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<addon id="plugin.video.emby" <addon id="plugin.video.emby"
name="Emby" name="Emby"
version="2.2.55" version="2.2.56"
provider-name="Emby.media"> provider-name="Emby.media">
<requires> <requires>
<import addon="xbmc.python" version="2.19.0"/> <import addon="xbmc.python" version="2.19.0"/>

View File

@ -20,6 +20,7 @@ import videonodes
import websocket_client as wsc import websocket_client as wsc
from utils import window, settings, dialog, language as lang from utils import window, settings, dialog, language as lang
from ga_client import GoogleAnalytics from ga_client import GoogleAnalytics
import md5
################################################################################################# #################################################################################################
@ -157,8 +158,12 @@ class Service(object):
def _startup(self): def _startup(self):
serverId = settings('serverId')
if(serverId != None):
serverId = md5.new(serverId).hexdigest()
ga = GoogleAnalytics() ga = GoogleAnalytics()
ga.sendEventData("Application", "Startup") ga.sendEventData("Application", "Startup", serverId)
# Start up events # Start up events
self.warn_auth = True self.warn_auth = True