mirror of
https://github.com/NodeBB/NodeBB.git
synced 2026-01-05 07:10:30 +01:00
fix: guests visiting /world should see all remote topics
This commit is contained in:
@@ -16,7 +16,7 @@ controller.list = async function (req, res) {
|
||||
const stop = start + topicsPerPage - 1;
|
||||
|
||||
const sets = ['cid:-1:tids', `uid:${req.uid}:inbox`];
|
||||
if (req.params.filter === 'all') {
|
||||
if (req.params.filter === 'all' || !req.uid) {
|
||||
sets.pop();
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user