Use system notification sounds

Alternatively, there is per-platform support for specific sounds, but that would
require a larger investment:
- macOS: 9420a38fc3 (all-notification-options-with-their-defaults)
- Windows: https://docs.microsoft.com/en-us/previous-versions/windows/apps/hh761492(v=win.10)
pull/1/head
Daniel Gasienica 7 years ago
parent 59e59fb754
commit b5e7882267

@ -89,11 +89,12 @@
break;
}
var shouldPlayNotificationSound = storage.get('audio-notification') || false;
if (window.config.polyfillNotifications) {
window.nodeNotifier.notify({
title: title,
message: message,
sound: false
sound: shouldPlayNotificationSound,
});
window.nodeNotifier.on('click', function(notifierObject, options) {
last.get('conversationId');
@ -103,7 +104,7 @@
body : message,
icon : iconUrl,
tag : 'signal',
silent : true
silent : !shouldPlayNotificationSound,
});
notification.onclick = this.onClick.bind(this, last.get('conversationId'));

Loading…
Cancel
Save