mirror of
https://github.com/NodeBB/NodeBB.git
synced 2026-03-06 20:41:17 +01:00
fixed bug with search (getTopicsByTids became error-first)
This commit is contained in:
@@ -294,7 +294,7 @@ var path = require('path'),
|
||||
return callback(err, null);
|
||||
}
|
||||
|
||||
topics.getTopicsByTids(tids, 0, 0, function (topics) {
|
||||
topics.getTopicsByTids(tids, 0, 0, function (err, topics) {
|
||||
callback(null, topics);
|
||||
});
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user