This commit is contained in:
angelblue05 2016-10-27 01:17:37 -05:00
commit f3e52e1a3b
2 changed files with 8 additions and 3 deletions

View File

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

View File

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