Skip to content

Commit

Permalink
Fix Episode ID assignment in Jellyfin
Browse files Browse the repository at this point in the history
  • Loading branch information
CollinHeist committed Oct 27, 2023
1 parent 2fbd5f0 commit c2bba4a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion modules/JellyfinInterface2.py
Original file line number Diff line number Diff line change
Expand Up @@ -364,7 +364,7 @@ def set_episode_ids(self,

# Match to existing info
for old_episode_info in episode_infos:
for new_episode_info in new_episode_infos:
for new_episode_info, _ in new_episode_infos:
if old_episode_info == new_episode_info:
# For each ID of this new EpisodeInfo, update old if upgrade
for id_type, id_ in new_episode_info.ids.items():
Expand Down
2 changes: 1 addition & 1 deletion modules/ref/version_webui
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v2.0-alpha.6.0-webui128
v2.0-alpha.6.0-webui129

0 comments on commit c2bba4a

Please sign in to comment.