mirror of
https://github.com/meilisearch/MeiliSearch
synced 2025-07-04 20:37:15 +02:00
Fixed the display of enqueued updates
This commit is contained in:
parent
acb5e624c6
commit
8e4b362e4d
1 changed files with 1 additions and 1 deletions
|
@ -243,7 +243,7 @@ impl Index {
|
|||
|
||||
// retrieve all enqueued updates
|
||||
if let Some((last_id, _)) = self.updates.last_update_id(reader)? {
|
||||
for id in last_update_result_id + 1..last_id {
|
||||
for id in last_update_result_id + 1..=last_id {
|
||||
if let Some(update) = self.update_status(reader, id)? {
|
||||
updates.push(update);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue