From 0c903672d0ae2a5a0f11abee91ecca9caa457b61 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bar=C4=B1=C5=9F=20Soner=20U=C5=9Fakl=C4=B1?= Date: Wed, 25 Feb 2015 12:46:00 -0500 Subject: [PATCH] uid not used #1973 --- src/topics/suggested.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/topics/suggested.js b/src/topics/suggested.js index 3c18d50dbe..fd3455f726 100644 --- a/src/topics/suggested.js +++ b/src/topics/suggested.js @@ -17,7 +17,7 @@ module.exports = function(Topics) { getTidsWithSameTags(tid, next); }, searchTids: function(next) { - getSearchTids(tid, uid, next); + getSearchTids(tid, next); }, categoryTids: function(next) { getCategoryTids(tid, next); @@ -51,7 +51,7 @@ module.exports = function(Topics) { ], callback); } - function getSearchTids(tid, uid, callback) { + function getSearchTids(tid, callback) { async.waterfall([ function(next) { Topics.getTopicField(tid, 'title', next);