Merge branch 'krille/fix-notification-for-muted-rooms' into 'master'

Fix notifications for muted rooms

See merge request ChristianPauly/fluffychat-flutter!94
This commit is contained in:
Christian Pauly 2020-06-27 09:18:49 +00:00
commit 5f07190026
1 changed files with 1 additions and 0 deletions

View File

@ -160,6 +160,7 @@ class MatrixState extends State<Matrix> {
void _showWebNotification(EventUpdate eventUpdate) async {
final room = client.getRoomById(eventUpdate.roomID);
if (room.notificationCount == 0) return;
final event = Event.fromJson(eventUpdate.content, room);
final body = event.getLocalizedBody(
L10n.of(context),