mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2024-11-10 12:16:12 +00:00
403e5834e0
Move patch from cache to addon_data. No longer need to restart Kodi to apply the first patch.
43 lines
1.2 KiB
Python
43 lines
1.2 KiB
Python
# -*- coding: utf-8 -*-
|
|
|
|
#################################################################################################
|
|
|
|
import logging
|
|
import os
|
|
import sys
|
|
|
|
import xbmc
|
|
import xbmcaddon
|
|
|
|
#################################################################################################
|
|
|
|
__addon__ = xbmcaddon.Addon(id='plugin.video.emby')
|
|
__base__ = xbmc.translatePath(os.path.join(__addon__.getAddonInfo('path'), 'resources', 'lib')).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')
|
|
|
|
sys.path.insert(0, __cache__)
|
|
sys.path.insert(0, __pcache__)
|
|
sys.path.append(__base__)
|
|
|
|
#################################################################################################
|
|
|
|
from entrypoint import Context
|
|
|
|
#################################################################################################
|
|
|
|
LOG = logging.getLogger("EMBY.context")
|
|
|
|
#################################################################################################
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
LOG.debug("--->[ context ]")
|
|
|
|
try:
|
|
Context()
|
|
except Exception as error:
|
|
LOG.exception(error)
|
|
|
|
LOG.info("---<[ context ]")
|