mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2024-12-25 02:06:09 +00:00
Fix guid creation
This commit is contained in:
parent
a988d418ef
commit
0a53bc8c1f
2 changed files with 2 additions and 2 deletions
|
@ -76,7 +76,7 @@ def get_device_id(reset=False):
|
|||
if 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):
|
||||
xbmcvfs.mkdir(directory)
|
||||
|
|
|
@ -398,7 +398,7 @@ class Service(xbmc.Monitor):
|
|||
"emby_initialScan",
|
||||
|
||||
"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:
|
||||
window(prop, clear=True)
|
||||
|
|
Loading…
Reference in a new issue