Index: lib/notification.js |
=================================================================== |
--- a/lib/notification.js |
+++ b/lib/notification.js |
@@ -363,17 +363,17 @@ let Notification = exports.Notification |
triggerQuestionListeners: function(id, approved) |
{ |
if (!(id in questionListeners)) |
return; |
let listeners = questionListeners[id]; |
for (let listener of listeners) |
listener(approved); |
}, |
- |
+ |
/** |
* Toggles whether notifications of a specific category should be ignored |
* @param {String} category notification category identifier |
* @param {Boolean} [forceValue] force specified value |
*/ |
toggleIgnoreCategory: function(category, forceValue) |
{ |
let categories = Prefs.notifications_ignoredcategories; |