Increase image caching timeouts to 5s
This commit is contained in:
parent
d300cc60d6
commit
b79705719d
2 changed files with 1 additions and 2 deletions
|
@ -40,7 +40,7 @@ class image_cache_thread(threading.Thread):
|
|||
"http://%s:%s/image/image://%s"
|
||||
% (self.xbmc_host, self.xbmc_port, self.urlToProcess)),
|
||||
auth=(self.xbmc_username, self.xbmc_password),
|
||||
timeout=(2, 2))
|
||||
timeout=(5, 5))
|
||||
# We don't need the result
|
||||
except: pass
|
||||
|
||||
|
|
|
@ -1176,7 +1176,6 @@ class TVShows(Items):
|
|||
|
||||
# Process artwork
|
||||
allartworks = API.getAllArtwork()
|
||||
self.logMsg('TV id: %s, Seasonid: %s' % (viewid, seasonid), 1)
|
||||
artwork.addArtwork(allartworks, seasonid, "season", kodicursor)
|
||||
|
||||
if update_item:
|
||||
|
|
Loading…
Reference in a new issue