From eab297bdc9b97634bd91cf03d64b7b0cffb7f4a5 Mon Sep 17 00:00:00 2001 From: Baris Usakli Date: Wed, 5 Dec 2018 13:06:02 -0500 Subject: [PATCH] fix: #7061 --- src/topics/teaser.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/topics/teaser.js b/src/topics/teaser.js index fa65f5d087..b2e2f57758 100644 --- a/src/topics/teaser.js +++ b/src/topics/teaser.js @@ -34,7 +34,7 @@ module.exports = function (Topics) { teaserPids.push(topic.mainPid); } else if (meta.config.teaserPost === 'last-post') { teaserPids.push(topic.teaserPid || topic.mainPid); - } else if (meta.config.teaserPost === 'last-reply') { + } else { // last-reply and everything else uses teaserPid like `last` that was used before teaserPids.push(topic.teaserPid); } }