From 584fe602849cdc53f330663725d29c710f132774 Mon Sep 17 00:00:00 2001 From: Julian Lam Date: Wed, 28 May 2014 20:40:40 -0400 Subject: [PATCH 1/3] fixed #1554, redis error handling will go back to crashing the error (though the error will be logged at least) --- src/database/redis.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/database/redis.js b/src/database/redis.js index aaa8c7d0ac..2c0e9bd1cc 100644 --- a/src/database/redis.js +++ b/src/database/redis.js @@ -65,6 +65,7 @@ redisClient.on('error', function (err) { winston.error(err.stack); + process.exit(1); }); module.client = redisClient; From 652e1ef5745b69cb15e756eeb7df923af6e47388 Mon Sep 17 00:00:00 2001 From: barisusakli Date: Thu, 29 May 2014 12:09:54 -0400 Subject: [PATCH 2/3] closes #1597 turns out clicking back causes double script.init() calls and ajaxify.variables.get('topic_id') can be undefined in one of those calls. --- public/src/forum/topic.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/public/src/forum/topic.js b/public/src/forum/topic.js index 4337937a99..532526763e 100644 --- a/public/src/forum/topic.js +++ b/public/src/forum/topic.js @@ -376,7 +376,8 @@ define(['forum/pagination', 'forum/infinitescroll', 'forum/topic/threadTools', ' } function loadPostsAfter(after, callback) { - if (!utils.isNumber(after) || (after === 0 && $('#post-container li.post-row[data-index="0"]').length)) { + var tid = ajaxify.variables.get('topic_id'); + if (!utils.isNumber(tid) || !utils.isNumber(after) || (after === 0 && $('#post-container li.post-row[data-index="0"]').length)) { return; } @@ -386,7 +387,7 @@ define(['forum/pagination', 'forum/infinitescroll', 'forum/topic/threadTools', ' } infinitescroll.loadMore('topics.loadMore', { - tid: ajaxify.variables.get('topic_id'), + tid: tid, after: after }, function (data) { From 5ae29ef33ab5ab8aaf2dad55be44dcb4d6c93faf Mon Sep 17 00:00:00 2001 From: barisusakli Date: Thu, 29 May 2014 15:36:28 -0400 Subject: [PATCH 3/3] fix sitemap --- src/sitemap.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/sitemap.js b/src/sitemap.js index 4ee7cfc7f2..10db5e0032 100644 --- a/src/sitemap.js +++ b/src/sitemap.js @@ -29,12 +29,12 @@ var path = require('path'), async.parallel([ function(next) { var categoryUrls = []; - categories.getVisibleCategories(0, function(err, data) { + categories.getVisibleCategories(0, function(err, categoriesData) { if (err) { return next(err); } - data.categories.forEach(function(category) { + categoriesData.forEach(function(category) { categoryUrls.push({ url: path.join('/category', category.slug), changefreq: 'weekly',