mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2024-11-10 12:16:12 +00:00
update episode rather than tv show
This commit is contained in:
parent
70182edf0e
commit
392863fa93
1 changed files with 1 additions and 1 deletions
|
@ -204,7 +204,7 @@ class LibrarySync():
|
||||||
else:
|
else:
|
||||||
# If there are changes to the item, perform a full sync of the item
|
# If there are changes to the item, perform a full sync of the item
|
||||||
if kodiEpisode[2] != item["Name"] or item["Id"] in itemList:
|
if kodiEpisode[2] != item["Name"] or item["Id"] in itemList:
|
||||||
WriteKodiDB().addOrUpdateTvShowToKodiLibrary(item["Id"], kodiShowId, connection, cursor)
|
WriteKodiDB().addOrUpdateEpisodeToKodiLibrary(item["Id"], kodiShowId, connection, cursor)
|
||||||
|
|
||||||
#### EPISODES: PROCESS DELETES #####
|
#### EPISODES: PROCESS DELETES #####
|
||||||
allEmbyEpisodeIds = set(allEmbyEpisodeIds)
|
allEmbyEpisodeIds = set(allEmbyEpisodeIds)
|
||||||
|
|
Loading…
Reference in a new issue