mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2024-11-10 04:06:11 +00:00
Merge branch 'develop' of https://github.com/MediaBrowser/plugin.video.emby into develop
This commit is contained in:
commit
f3e52e1a3b
2 changed files with 8 additions and 3 deletions
|
@ -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"/>
|
||||
|
|
|
@ -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
|
||||
|
||||
#################################################################################################
|
||||
|
||||
|
@ -157,8 +158,12 @@ class Service(object):
|
|||
|
||||
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
|
||||
|
|
Loading…
Reference in a new issue