Skip to content

Commit

Permalink
[build] Potential fix for series search loop
Browse files Browse the repository at this point in the history
  • Loading branch information
Feramance committed Oct 30, 2023
1 parent 37730b5 commit c6cdb08
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion qBitrr/arss.py
Original file line number Diff line number Diff line change
Expand Up @@ -2333,7 +2333,7 @@ def maybe_do_search(
Completed=False,
EntryId=file_model.EntryId,
).on_conflict_replace().execute()
if file_model.EntryId not in self.queue_file_ids:
if file_model.EntryId:
completed = True
while completed:
try:
Expand Down

0 comments on commit c6cdb08

Please sign in to comment.