Skip to content
Snippets Groups Projects
Unverified Commit 397cd3d9 authored by Diego Mello's avatar Diego Mello Committed by GitHub
Browse files

[FIX] Stop showing native push notification when in foreground (#4059)

parent e28f7ac4
No related branches found
No related tags found
No related merge requests found
......@@ -46,7 +46,7 @@ class PushNotification {
Notifications.events().registerNotificationReceivedForeground(
(notification: Notification, completion: (response: NotificationCompletion) => void) => {
completion({ alert: true, sound: true, badge: false });
completion({ alert: false, sound: false, badge: false });
}
);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment