Force refresh fanart

The only thing cached into texture13.db I believe fanart was the last
thing that wasn't changing when modified in Emby.
This commit is contained in:
angelblue05 2015-06-19 05:53:22 -05:00
parent ae07e1b4c6
commit 142908d56d
3 changed files with 18 additions and 1 deletions

View file

@ -796,7 +796,10 @@ class WriteKodiVideoDB():
cursor.execute("UPDATE art set url = ? WHERE media_id = ? AND media_type = ? AND type = ?", (imageUrl, kodiId, mediaType, imageType))
#cache fanart and poster in Kodi texture cache
if imageType == "fanart" or imageType == "poster":
if "fanart" in imageType:
utils.logMsg("ArtworkSync", "Adding or Updating Fanart: %s" % imageUrl)
self.textureCache.refreshFanart(imageUrl)
elif "poster" in imageType:
self.textureCache.CacheTexture(imageUrl)
def setKodiResumePoint(self, fileid, resume_seconds, total_seconds, cursor):