🐛 Fix explore pagination

This commit is contained in:
2025-09-04 00:55:37 +08:00
parent e9f09bbe54
commit c527b5e67c

View File

@@ -629,7 +629,7 @@ class ActivityListNotifier extends _$ActivityListNotifier
items.isNotEmpty items.isNotEmpty
? items ? items
.map((x) => x.createdAt) .map((x) => x.createdAt)
.reduce((a, b) => a.isAfter(b) ? a : b) .reduce((a, b) => a.isBefore(b) ? a : b)
.toUtc() .toUtc()
.toIso8601String() .toIso8601String()
: null; : null;