From 19a63bf51b9873aa067ff98dde571cfce71f32c5 Mon Sep 17 00:00:00 2001 From: psychobunny Date: Sun, 28 Apr 2013 20:27:10 +0000 Subject: [PATCH] fix for threads that have 0 posts --- src/posts.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/posts.js b/src/posts.js index bc1e7ea174..78e55d4562 100644 --- a/src/posts.js +++ b/src/posts.js @@ -48,6 +48,8 @@ var RDB = require('./redis.js'); callback({'posts': posts}); }); + } else { + callback({}); }