search: fixup hardcoded small search threshold.

Fixup for f6abf39eb.
This commit is contained in:
evazion
2021-10-12 18:55:26 -05:00
parent 374b03d62f
commit 92e20713e3

View File

@@ -514,9 +514,9 @@ class PostQueryBuilder
relation
end
def paginated_posts(page, small_search_threshold: Danbooru.config.small_search_threshold, **options)
def paginated_posts(page, small_search_threshold: Danbooru.config.small_search_threshold.to_i, **options)
posts = build.paginate(page, **options)
posts = optimize_search(posts, 30_000)
posts = optimize_search(posts, small_search_threshold)
posts.load
end