Skip to content

Commit

Permalink
[Application] Show all the bosses in the notification section
Browse files Browse the repository at this point in the history
  • Loading branch information
Wolfteam committed Mar 2, 2022
1 parent 7dd05e1 commit 44bdc42
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/application/notification/notification_bloc.dart
Expand Up @@ -727,7 +727,7 @@ class NotificationBloc extends Bloc<NotificationEvent, NotificationState> {
}

List<NotificationItemImage> _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))
Expand Down

0 comments on commit 44bdc42

Please sign in to comment.