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))