Skip to content

Commit d662073

Browse files
authored
Fix next page key not being passed to the paging controller. (#321)
1 parent 3a1d83f commit d662073

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/src/screens/feed/feed_screen.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -714,7 +714,7 @@ class _FeedScreenBodyState extends State<FeedScreenBody>
714714
setState(() {
715715
_lastPageFilteredOut = newItems.isEmpty && nextPageKey != null;
716716
});
717-
return (newItems, newItems.isEmpty ? null : nextPageKey);
717+
return (newItems, nextPageKey);
718718
},
719719
);
720720
SubordinateScrollController? _scrollController;

0 commit comments

Comments
 (0)