From a711adfcd07ca01b18c19a6930bf7eba53d0031f Mon Sep 17 00:00:00 2001 From: psychobunny Date: Thu, 16 May 2013 13:19:45 -0400 Subject: [PATCH] fix for recent/popular/active global categories --- src/topics.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/topics.js b/src/topics.js index 02a13007d8..a10e9e64d4 100644 --- a/src/topics.js +++ b/src/topics.js @@ -68,7 +68,7 @@ var RDB = require('./redis.js'), multi.exec(function(err, replies) { category_name = replies[0]; - if(category_name === null) { + if(category_id && category_name === null) { callback(false); return; }