🐛 Fix explore pagination
This commit is contained in:
@@ -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;
|
||||||
|
Reference in New Issue
Block a user