[mod] Retain page numbers even when there are no results

This commit is contained in:
obfuscated-loop 2023-11-22 10:49:45 +00:00 committed by Markus Heiser
parent c3cc24be12
commit 99fb565b39
2 changed files with 19 additions and 17 deletions

View file

@ -232,7 +232,7 @@ class ResultContainer:
if engine_name in engines:
histogram_observe(standard_result_count, 'engine', engine_name, 'result', 'count')
if not self.paging and standard_result_count > 0 and engine_name in engines and engines[engine_name].paging:
if not self.paging and engine_name in engines and engines[engine_name].paging:
self.paging = True
def _merge_infobox(self, infobox):