Skip to content

Commit c752f52

Browse files
committed
feat: fixed bool value
1 parent 30f0a1e commit c752f52

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

src/params.rs

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -439,12 +439,7 @@ where
439439
}
440440
} else {
441441
ok(ListPaginator {
442-
page: T::new(
443-
Vec::new(),
444-
self.page.get_url(),
445-
self.page.has_more(),
446-
self.page.get_total_count(),
447-
),
442+
page: T::new(Vec::new(), self.page.get_url(), false, self.page.get_total_count()),
448443
params: self.params.clone(),
449444
})
450445
}

0 commit comments

Comments
 (0)