Skip to content

Commit

Permalink
feat: fixed bool value
Browse files Browse the repository at this point in the history
  • Loading branch information
hzargar2 committed Sep 5, 2023
1 parent 30f0a1e commit c752f52
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions src/params.rs
Expand Up @@ -439,12 +439,7 @@ where
}
} else {
ok(ListPaginator {
page: T::new(
Vec::new(),
self.page.get_url(),
self.page.has_more(),
self.page.get_total_count(),
),
page: T::new(Vec::new(), self.page.get_url(), false, self.page.get_total_count()),
params: self.params.clone(),
})
}
Expand Down

0 comments on commit c752f52

Please sign in to comment.