mirror of
https://github.com/NodeBB/NodeBB.git
synced 2025-11-06 22:15:48 +01:00
moved related up
This commit is contained in:
@@ -192,7 +192,8 @@ var social = require('./social');
|
||||
isFollowing: async.apply(Topics.isFollowing, [topicData.tid], uid),
|
||||
isIgnoring: async.apply(Topics.isIgnoring, [topicData.tid], uid),
|
||||
bookmark: async.apply(Topics.getUserBookmark, topicData.tid, uid),
|
||||
postSharing: async.apply(social.getActivePostSharing)
|
||||
postSharing: async.apply(social.getActivePostSharing),
|
||||
related: async.apply(Topics.getRelatedTopics, topicData, uid)
|
||||
}, next);
|
||||
},
|
||||
function (results, next) {
|
||||
@@ -205,6 +206,7 @@ var social = require('./social');
|
||||
topicData.isIgnoring = results.isIgnoring[0];
|
||||
topicData.bookmark = results.bookmark;
|
||||
topicData.postSharing = results.postSharing;
|
||||
topicData.related = results.related || [];
|
||||
|
||||
topicData.unreplied = parseInt(topicData.postcount, 10) === 1;
|
||||
topicData.deleted = parseInt(topicData.deleted, 10) === 1;
|
||||
@@ -213,10 +215,6 @@ var social = require('./social');
|
||||
|
||||
topicData.icons = [];
|
||||
|
||||
Topics.getRelatedTopics(topicData, uid, next);
|
||||
},
|
||||
function (related, next) {
|
||||
topicData.related = related || [];
|
||||
plugins.fireHook('filter:topic.get', {topic: topicData, uid: uid}, next);
|
||||
},
|
||||
function (data, next) {
|
||||
|
||||
Reference in New Issue
Block a user