From 7b0ec132974a471504fc8876a41bd3eb761a4680 Mon Sep 17 00:00:00 2001 From: tomkat83 Date: Wed, 26 Oct 2016 20:33:13 +0200 Subject: [PATCH] Fix really ugly bug - artwork queue was initiated and stuck in endless loop --- resources/lib/entrypoint.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/resources/lib/entrypoint.py b/resources/lib/entrypoint.py index bf97270f..9d01481c 100644 --- a/resources/lib/entrypoint.py +++ b/resources/lib/entrypoint.py @@ -13,7 +13,6 @@ import xbmcgui import xbmcvfs import xbmcplugin -import artwork from utils import window, settings, language as lang from utils import tryDecode, tryEncode, CatchExceptions import clientinfo @@ -469,7 +468,8 @@ def BrowseContent(viewname, browse_type="", folderid=""): xbmcplugin.endOfDirectory(handle=int(sys.argv[1])) ##### CREATE LISTITEM FROM EMBY METADATA ##### -def createListItemFromEmbyItem(item,art=artwork.Artwork(),doUtils=downloadutils.DownloadUtils()): +# def createListItemFromEmbyItem(item,art=artwork.Artwork(),doUtils=downloadutils.DownloadUtils()): +def createListItemFromEmbyItem(item,art=None,doUtils=downloadutils.DownloadUtils()): API = PlexAPI.API(item) itemid = item['Id']