mirror of
https://github.com/tubearchivist/tubearchivist
synced 2024-11-02 09:41:07 +00:00
fix last page pagination link building error, #221
This commit is contained in:
parent
a8a7edb93e
commit
fd00369859
@ -133,7 +133,7 @@ class Pagination:
|
|||||||
"""validate pagination with total_hits after making api call"""
|
"""validate pagination with total_hits after making api call"""
|
||||||
page_get = self.page_get
|
page_get = self.page_get
|
||||||
max_pages = math.ceil(total_hits / self.page_size)
|
max_pages = math.ceil(total_hits / self.page_size)
|
||||||
if total_hits > 10000:
|
if total_hits >= 10000:
|
||||||
# es returns maximal 10000 results
|
# es returns maximal 10000 results
|
||||||
self.pagination["max_hits"] = True
|
self.pagination["max_hits"] = True
|
||||||
max_pages = max_pages - 1
|
max_pages = max_pages - 1
|
||||||
|
Loading…
Reference in New Issue
Block a user