mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2024-11-10 04:06:11 +00:00
fixed small error in full sync
This commit is contained in:
parent
fe35d84e1e
commit
ea8c810a05
1 changed files with 1 additions and 1 deletions
|
@ -447,7 +447,7 @@ class LibrarySync():
|
||||||
comparestring2 = str(KodiItem["season"]) + "-" + str(KodiItem["episode"])
|
comparestring2 = str(KodiItem["season"]) + "-" + str(KodiItem["episode"])
|
||||||
if comparestring1 == comparestring2:
|
if comparestring1 == comparestring2:
|
||||||
#match found - update episode
|
#match found - update episode
|
||||||
WriteKodiDB().updateEpisodeToKodiLibrary(item,KodiItem,tvshow)
|
WriteKodiDB().updateEpisodeToKodiLibrary(item,KodiItem)
|
||||||
break
|
break
|
||||||
|
|
||||||
if(self.ShouldStop()):
|
if(self.ShouldStop()):
|
||||||
|
|
Loading…
Reference in a new issue