Skip to content

Commit

Permalink
[minor] Starting implementation of new feature
Browse files Browse the repository at this point in the history
  • Loading branch information
Feramance committed Nov 16, 2023
1 parent 31f29d1 commit af480a6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions qBitrr/arss.py
Original file line number Diff line number Diff line change
Expand Up @@ -3834,13 +3834,13 @@ def run_search_loop(self) -> NoReturn:
self.search_current_year = years[years_index]
elif (
datetime.now() >= (timer + loop_timer)
) and self.arr_db_query_commands_count == 0:
) or self.arr_db_query_commands_count == 0:
self.refresh_download_queue()
self.force_grab()
raise RestartLoopException
elif (
datetime.now() >= (timer + loop_timer)
) and self.arr_db_query_commands_count == 0:
) or self.arr_db_query_commands_count == 0:
self.refresh_download_queue()
self.force_grab()
raise RestartLoopException
Expand Down

0 comments on commit af480a6

Please sign in to comment.