Skip to content

Commit

Permalink
Merge pull request #197 from Drazzilb08/dev
Browse files Browse the repository at this point in the history
Version update 1.2.4
  • Loading branch information
Drazzilb08 authored Nov 19, 2024
2 parents 6ee1a3a + 2f79865 commit f82ee12
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.2.3
1.2.4
6 changes: 5 additions & 1 deletion modules/upgradinatorr.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,11 @@ def filter_media(media_dict, checked_tag_id, ignore_tag_id, count, season_monito
if episode['monitored']:
monitored_count += 1
# Change monitoring of season depending on how many unmonitored episodes there are
monitored_percentage = monitored_count / len(season['episode_data'])
if len(season["episode_data"]) > 0:
monitored_percentage = monitored_count / len(season['episode_data'])
else:
logger.debug(f"Skipping {item['title']} ({item['year']}), Season {i} unmonitored. Reason: No episodes in season.")
continue
if monitored_percentage < season_monitored_threshold:
item['seasons'][i]['monitored'] = False
logger.debug(f"{item['title']}, Season {i} unmonitored. Reason: monitored percentage {monitored_percentage} less than season_monitored_threshold {season_monitored_threshold}")
Expand Down

0 comments on commit f82ee12

Please sign in to comment.