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 Aug 20, 2023
1 parent 411f1f6 commit 153d63d
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions src/params.rs
Original file line number Diff line number Diff line change
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 153d63d

Please sign in to comment.