Skip to content

Commit

Permalink
fix: #8500, allow regular users select topics on unread
Browse files Browse the repository at this point in the history
  • Loading branch information
barisusakli committed Jul 23, 2020
1 parent 4658121 commit 7260646
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/controllers/unread.js
Expand Up @@ -49,7 +49,7 @@ unreadController.get = async function (req, res, next) {
req.query.page = Math.max(1, Math.min(data.pageCount, page));
return helpers.redirect(res, '/unread?' + querystring.stringify(req.query));
}
data.showSelect = isPrivileged;
data.showSelect = true;
data.showTopicTools = isPrivileged;
data.categories = watchedCategories.categories;
data.allCategoriesUrl = 'unread' + helpers.buildQueryString('', filter, '');
Expand Down

0 comments on commit 7260646

Please sign in to comment.