Skip to content

Commit

Permalink
[patch] Hotfix for missed execute
Browse files Browse the repository at this point in the history
  • Loading branch information
Feramance committed Jan 3, 2024
1 parent a4ecf17 commit 5118d7d
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 @@ -3858,7 +3858,7 @@ def all_searched(self) -> bool:
)
else:
search_completed = (
self.model_file.select().where(self.model_file.Searched == False).count().execute()
self.model_file.select().where(self.model_file.Searched == False).count()
)
if search_completed > 0:
self.logger.debug("All searches completed [%s]", search_completed)
Expand Down

0 comments on commit 5118d7d

Please sign in to comment.