From c527b5e67c9e82fc3713616686e59440dd45dda3 Mon Sep 17 00:00:00 2001 From: LittleSheep Date: Thu, 4 Sep 2025 00:55:37 +0800 Subject: [PATCH] :bug: Fix explore pagination --- lib/screens/explore.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/screens/explore.dart b/lib/screens/explore.dart index c9fdd626..e4dafb6f 100644 --- a/lib/screens/explore.dart +++ b/lib/screens/explore.dart @@ -629,7 +629,7 @@ class ActivityListNotifier extends _$ActivityListNotifier items.isNotEmpty ? items .map((x) => x.createdAt) - .reduce((a, b) => a.isAfter(b) ? a : b) + .reduce((a, b) => a.isBefore(b) ? a : b) .toUtc() .toIso8601String() : null;