[READ-ONLY] Mirror of https://github.com/probablykasper/notifier. Android app for scheduling notifications
android app flutter notifications
0

Configure Feed

Select the types of activity you want to include in your feed.

Removed infinite loop

Kasper (Jul 9, 2019, 1:40 AM +0200) 4d07e9f3 2f98fdba

+1 -1
+1 -1
lib/models/list.dart
··· 193 193 weekdays: List<bool>.from(notificationItem['weekdays']), 194 194 ); 195 195 // if the app was installed after nextDate, get skip over this date and get the next nextDate. This is for when you reinstall the app and get your old notifications loaded (e.g via google backup). 196 - if (installDate.millisecondsSinceEpoch > nextDate.millisecondsSinceEpoch) { 196 + if (installDate.millisecondsSinceEpoch < nextDate.millisecondsSinceEpoch) { 197 197 done = true; 198 198 } 199 199 }