mirror of
https://github.com/meilisearch/MeiliSearch
synced 2025-07-04 20:37:15 +02:00
Fix zero division when computing pages
This commit is contained in:
parent
e9d493c052
commit
815fba9cc3
1 changed files with 1 additions and 1 deletions
|
@ -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 {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue