From 81f9500f5c435d893e60c7a65405e99af059e6f3 Mon Sep 17 00:00:00 2001 From: David Taylor Date: Thu, 12 Jul 2018 22:00:53 +0100 Subject: [PATCH] FIX: Change megatopic threshold to 10,000 posts --- lib/topic_view.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/topic_view.rb b/lib/topic_view.rb index d392d1755e9..e093ea865c2 100644 --- a/lib/topic_view.rb +++ b/lib/topic_view.rb @@ -4,7 +4,7 @@ require_dependency 'filter_best_posts' require_dependency 'gaps' class TopicView - MEGA_TOPIC_POSTS_COUNT = 25 + MEGA_TOPIC_POSTS_COUNT = 10000 attr_reader :topic, :posts, :guardian, :filtered_posts, :chunk_size, :print, :message_bus_last_id attr_accessor :draft, :draft_key, :draft_sequence, :user_custom_fields, :post_custom_fields, :post_number