mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2024-11-10 04:06:11 +00:00
Fix import error
Fix context menu
This commit is contained in:
parent
017b6438f4
commit
7149cd1917
1 changed files with 1 additions and 1 deletions
|
@ -13,7 +13,7 @@ import xbmcaddon
|
||||||
|
|
||||||
__addon__ = xbmcaddon.Addon(id='plugin.video.emby')
|
__addon__ = xbmcaddon.Addon(id='plugin.video.emby')
|
||||||
__base__ = xbmc.translatePath(os.path.join(__addon__.getAddonInfo('path'), 'resources', 'lib')).decode('utf-8')
|
__base__ = xbmc.translatePath(os.path.join(__addon__.getAddonInfo('path'), 'resources', 'lib')).decode('utf-8')
|
||||||
__libraries__ = xbmc.translatePath(os.path.join(__addon__.getAddonInfo('path'), 'librarie')).decode('utf-8')
|
__libraries__ = xbmc.translatePath(os.path.join(__addon__.getAddonInfo('path'), 'libraries')).decode('utf-8')
|
||||||
__pcache__ = xbmc.translatePath(os.path.join(__addon__.getAddonInfo('profile'), 'emby')).decode('utf-8')
|
__pcache__ = xbmc.translatePath(os.path.join(__addon__.getAddonInfo('profile'), 'emby')).decode('utf-8')
|
||||||
__cache__ = xbmc.translatePath('special://temp/emby').decode('utf-8')
|
__cache__ = xbmc.translatePath('special://temp/emby').decode('utf-8')
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue