diff --git a/src/browser/js/notification.js b/src/browser/js/notification.js index f893d879..9eb14cc6 100644 --- a/src/browser/js/notification.js +++ b/src/browser/js/notification.js @@ -2,6 +2,10 @@ const OriginalNotification = Notification; function override(eventHandlers) { Notification = function(title, options) { + // Notification Center shows app's icon, so there were two icons on the notification. + if (process.platform === 'darwin') { + delete options.icon; + } this.notification = new OriginalNotification(title, options); if (eventHandlers.notification) { eventHandlers.notification(title, options);