Skip to content

Commit

Permalink
fix conditional that caused looping of symlinked state
Browse files Browse the repository at this point in the history
  • Loading branch information
omnunum committed Feb 25, 2024
1 parent 520e0a8 commit d68bd5d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/program/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ def run(self):
next_service = PlexUpdater
if isinstance(item, Show):
items_to_submit = [s for s in item.seasons]
if isinstance(item, Season):
elif isinstance(item, Season):
items_to_submit = [e for e in item.episodes]
else:
items_to_submit = [item]
Expand Down

0 comments on commit d68bd5d

Please sign in to comment.