[Config] Align max pages with live site

This commit is contained in:
Earlopain 2021-11-02 14:32:40 +01:00
parent 34cc839016
commit ef0e81156c
No known key found for this signature in database
GPG Key ID: 6CFB948E15246897
2 changed files with 2 additions and 2 deletions

View File

@ -123,7 +123,7 @@ module Danbooru
raise ::Danbooru::Paginator::PaginationError.new("You cannot go beyond page #{Danbooru.config.max_numbered_pages}. Please narrow your search terms.")
end
search.definition.update(size: records_per_page, from: (page - 1) * records_per_page, track_total_hits: 750*records_per_page + 1)
search.definition.update(size: records_per_page, from: (page - 1) * records_per_page, track_total_hits: Danbooru.config.max_numbered_pages * records_per_page + 1)
@current_page = page
self

View File

@ -316,7 +316,7 @@ fart'
# After this many pages, the paginator will switch to sequential mode.
def max_numbered_pages
1_000
750
end
def beta_notice