diff --git a/package.json b/package.json index d3ba96f1ee..9d661a4d4c 100644 --- a/package.json +++ b/package.json @@ -60,7 +60,7 @@ "nodebb-plugin-emoji-extended": "1.1.1", "nodebb-plugin-emoji-one": "1.2.1", "nodebb-plugin-markdown": "7.1.1", - "nodebb-plugin-mentions": "2.1.2", + "nodebb-plugin-mentions": "2.1.3", "nodebb-plugin-soundpack-default": "1.0.0", "nodebb-plugin-spam-be-gone": "0.5.0", "nodebb-rewards-essentials": "0.0.9", diff --git a/src/controllers/accounts/notifications.js b/src/controllers/accounts/notifications.js index c6715ba144..d398003782 100644 --- a/src/controllers/accounts/notifications.js +++ b/src/controllers/accounts/notifications.js @@ -12,7 +12,7 @@ var notificationsController = module.exports; notificationsController.get = function (req, res, next) { var regularFilters = [ { name: '[[notifications:all]]', filter: '' }, - { name: '[[notifications:topics]]', filter: 'new-topic' }, + { name: '[[global:topics]]', filter: 'new-topic' }, { name: '[[notifications:replies]]', filter: 'new-reply' }, { name: '[[notifications:chat]]', filter: 'new-chat' }, { name: '[[notifications:follows]]', filter: 'follow' },