fixed bug with search (getTopicsByTids became error-first)

This commit is contained in:
Julian Lam
2014-01-17 14:29:46 -05:00
parent 51abf60b3a
commit 962955f06a

View File

@@ -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);
});
});