Fix guid creation

This commit is contained in:
angelblue05 2018-09-13 03:26:50 -05:00
parent a988d418ef
commit 0a53bc8c1f
2 changed files with 2 additions and 2 deletions

View file

@ -76,7 +76,7 @@ def get_device_id(reset=False):
if client_id: if client_id:
return client_id return client_id
directory = xbmc.translatePath('special://special://profile/addon_data/plugin.video.emby/').decode('utf-8') directory = xbmc.translatePath('special://profile/addon_data/plugin.video.emby/').decode('utf-8')
if not xbmcvfs.exists(directory): if not xbmcvfs.exists(directory):
xbmcvfs.mkdir(directory) xbmcvfs.mkdir(directory)

View file

@ -398,7 +398,7 @@ class Service(xbmc.Monitor):
"emby_initialScan", "emby_initialScan",
"emby_play", "emby_online", "emby.connected", "emby_should_stop", "emby.resume", "emby_play", "emby_online", "emby.connected", "emby_should_stop", "emby.resume",
"emby.external", "emby.external_check", "emby_deviceId" "emby.external", "emby.external_check", "emby_deviceId", "emby_db_check"
] ]
for prop in properties: for prop in properties:
window(prop, clear=True) window(prop, clear=True)