Fix zero division when computing pages

This commit is contained in:
ManyTheFish 2022-07-21 16:10:03 +02:00
parent e9d493c052
commit 815fba9cc3

View File

@ -300,7 +300,7 @@ impl Index {
HitsInfo::Pagination {
hits_per_page,
page: offset / hits_per_page + 1,
total_pages: (number_of_hits + hits_per_page - 1) / query.hits_per_page,
total_pages: (number_of_hits + hits_per_page - 1) / hits_per_page,
total_hits: number_of_hits,
}
} else {