From 501c0c3c6220a53a98396136ecec12a8305f448e Mon Sep 17 00:00:00 2001 From: ccd0 Date: Sat, 10 Jan 2015 20:50:57 -0800 Subject: [PATCH] Revert "Use our own thread excerpt for /pol/ instead of 4chan's." This reverts commit f302befec7c392108b1640343bc6ec5a38c8d92f. --- src/General/Config.coffee | 2 +- src/Monitoring/ThreadExcerpt.coffee | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/General/Config.coffee b/src/General/Config.coffee index a0bbb80cd..77e20776a 100755 --- a/src/General/Config.coffee +++ b/src/General/Config.coffee @@ -318,7 +318,7 @@ Config = ] 'Thread Excerpt': [ true - 'Show an excerpt of the thread in the tab title if not already present.' + 'Show an excerpt of the thread in the tab title for threads in /f/.' ] 'Remove Thread Excerpt': [ false diff --git a/src/Monitoring/ThreadExcerpt.coffee b/src/Monitoring/ThreadExcerpt.coffee index ec16b93f1..29148362d 100755 --- a/src/Monitoring/ThreadExcerpt.coffee +++ b/src/Monitoring/ThreadExcerpt.coffee @@ -1,6 +1,6 @@ ThreadExcerpt = init: -> - return if (g.BOARD.ID isnt 'f' and g.BOARD.ID isnt 'pol') or g.VIEW isnt 'thread' or !Conf['Thread Excerpt'] or Conf['Remove Thread Excerpt'] + return if g.BOARD.ID isnt 'f' or g.VIEW isnt 'thread' or !Conf['Thread Excerpt'] Thread.callbacks.push name: 'Thread Excerpt'