From 44bdc42fd97313cb50e301507b174133edfe7a79 Mon Sep 17 00:00:00 2001 From: Efrain Date: Tue, 1 Mar 2022 19:26:25 -0500 Subject: [PATCH] [Application] Show all the bosses in the notification section --- lib/application/notification/notification_bloc.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/application/notification/notification_bloc.dart b/lib/application/notification/notification_bloc.dart index 62b0f14f7..7abc20502 100644 --- a/lib/application/notification/notification_bloc.dart +++ b/lib/application/notification/notification_bloc.dart @@ -727,7 +727,7 @@ class NotificationBloc extends Bloc { } List _getImagesForWeeklyBossNotifications({String? selectedImage}) { - final monsters = _genshinService.getMonsters(MonsterType.boss).where((el) => el.drops.isNotEmpty).toList(); + final monsters = _genshinService.getMonsters(MonsterType.boss).toList(); if (selectedImage.isNotNullEmptyOrWhitespace) { return monsters .map((e) => NotificationItemImage(itemKey: e.key, image: e.fullImagePath, isSelected: e.fullImagePath == selectedImage))