Skip to content

Commit

Permalink
Free space pause adjustment
Browse files Browse the repository at this point in the history
  • Loading branch information
Feramance committed Jan 17, 2024
1 parent 8e94885 commit ed372d4
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion qBitrr/arss.py
Original file line number Diff line number Diff line change
Expand Up @@ -3633,7 +3633,9 @@ def _should_leave_alone(
and "qBitrr-free_space_paused" not in torrent.tags
):
torrent.add_tags(tags=["qBitrr-allowed_seeding"])
elif not return_value and "qBitrr-allowed_seeding" in torrent.tags:
elif (
not return_value and "qBitrr-allowed_seeding" in torrent.tags
) or "qBitrr-free_space_paused" in torrent.tags:
torrent.remove_tags(tags=["qBitrr-allowed_seeding"])
return (
return_value,
Expand Down

0 comments on commit ed372d4

Please sign in to comment.