diff --git a/lib/managers/notifications.dart b/lib/managers/notifications.dart index bb1baf9..dd5b7c3 100644 --- a/lib/managers/notifications.dart +++ b/lib/managers/notifications.dart @@ -124,7 +124,11 @@ class NotificationClass { Future scheduleDueNotifications(TaskService taskService, {List? tasks}) async { - if (tasks == null) tasks = await taskService.getByFilterString("done=false && (due_date > now || reminders > now)", {"filter_include_nulls": ["false"]}); + if (tasks == null) + tasks = await taskService.getByFilterString( + "done=false && (due_date > now || reminders > now)", { + "filter_include_nulls": ["false"] + }); if (tasks == null) { print("did not receive tasks on notification update"); return;