Fix missing argument in notification showing

paste-quickfix
Lorenz Hübschle-Schneider 10 years ago
parent 688c6f1ee5
commit d8a1beb4db
  1. 4
      js/notifications.js

@ -35,7 +35,7 @@ weechat.factory('notifications', ['$rootScope', '$log', 'models', 'settings', fu
}
};
var showNotification = function(title, body) {
var showNotification = function(buffer, title, body) {
if (serviceworker) {
navigator.serviceWorker.ready.then(function(registration) {
registration.showNotification(title, {
@ -157,7 +157,7 @@ weechat.factory('notifications', ['$rootScope', '$log', 'models', 'settings', fu
}
title += buffer.shortName + " (" + buffer.server + ")";
showNotification(title, body);
showNotification(buffer, title, body);
if (settings.soundnotification) {
// TODO fill in a sound file

Loading…
Cancel
Save