Small fixes

This commit is contained in:
angelblue05 2018-09-22 06:27:01 -05:00
parent 7b2ee9d4ba
commit 9ec1fa3585
2 changed files with 6 additions and 1 deletions

View File

@ -300,7 +300,7 @@ class TheVoid(object):
return response return response
if window('emby_should_stop.bool') or self.monitor.waitForAbort(0.2): if window('emby_should_stop.bool') and self.monitor.waitForAbort(0.00001):
LOG.info("Abandon mission! A black hole just swallowed [ %s ]", self.data['VoidName']) LOG.info("Abandon mission! A black hole just swallowed [ %s ]", self.data['VoidName'])
break break

View File

@ -17,6 +17,11 @@ cache = xbmc.translatePath('special://temp/emby').decode('utf-8')
if not xbmcvfs.exists(cache): if not xbmcvfs.exists(cache):
xbmcvfs.mkdir(cache) xbmcvfs.mkdir(cache)
if not xbmcvfs.exists(os.path.join(cache, '__init__.py')):
init = xbmcvfs.File(os.path.join(cache, '__init__.py'), 'w')
init.close()
sys.path.insert(0, cache) sys.path.insert(0, cache)
__addon__ = xbmcaddon.Addon(id='plugin.video.emby').getAddonInfo('path').decode('utf-8') __addon__ = xbmcaddon.Addon(id='plugin.video.emby').getAddonInfo('path').decode('utf-8')
__base__ = xbmc.translatePath(os.path.join(__addon__, 'resources', 'lib')).decode('utf-8') __base__ = xbmc.translatePath(os.path.join(__addon__, 'resources', 'lib')).decode('utf-8')