We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 83c9a5a commit a8439c1Copy full SHA for a8439c1
lib/features/notification/bloc/auto_notification_cubit.dart
@@ -120,7 +120,7 @@ final class AutoNotificationCubit extends Cubit<AutoNoticeState> with LoggerMixi
120
if (lastFetchTimeEither.isRight()) {
121
final t = lastFetchTimeEither.unwrap();
122
if (t != null) {
123
- lastFetchTime = t.millisecondsSinceEpoch ~/ 1000;
+ lastFetchTime = t.millisecondsSinceEpoch ~/ 1000 + 1;
124
}
125
126
debug('auto fetch since $lastFetchTime');
0 commit comments