Skip to content

Commit

Permalink
Merge pull request #102 from alessioC42/fix_notifications
Browse files Browse the repository at this point in the history
Fix notifications
  • Loading branch information
alessioC42 committed Jan 2, 2024
2 parents 0be16ae + 794bdca commit c571347
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/lib/background_service/service.dart
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ Future<void> performBackgroundFetch() async {
final List combinedVPlan = [];

for (List plan in vPlan["entries"]) {
combinedVPlan.add(plan);
combinedVPlan.addAll(plan);
}

final filteredPlan = await filter_logic.filter(combinedVPlan);
Expand Down

0 comments on commit c571347

Please sign in to comment.