From 5865fab83cb0220ca807514369613f07e4790a8f Mon Sep 17 00:00:00 2001 From: Zixaphir Date: Wed, 14 Jan 2015 17:24:56 -0700 Subject: [PATCH] Fix #854 --- builds/appchan-x.user.js | 2 +- builds/crx/script.js | 2 +- src/Filtering/PostHiding.coffee | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/builds/appchan-x.user.js b/builds/appchan-x.user.js index 3b924b8a0..3a1613483 100644 --- a/builds/appchan-x.user.js +++ b/builds/appchan-x.user.js @@ -7715,7 +7715,7 @@ }, node: function() { var a, data, label; - if (!this.isReply || this.isClone || this.isFetchedQuote) { + if (this.isClone || this.isFetchedQuote) { return; } if (data = PostHiding.db.get({ diff --git a/builds/crx/script.js b/builds/crx/script.js index ff9f59ea3..db77ac58b 100644 --- a/builds/crx/script.js +++ b/builds/crx/script.js @@ -7749,7 +7749,7 @@ }, node: function() { var a, data, label; - if (!this.isReply || this.isClone || this.isFetchedQuote) { + if (this.isClone || this.isFetchedQuote) { return; } if (data = PostHiding.db.get({ diff --git a/src/Filtering/PostHiding.coffee b/src/Filtering/PostHiding.coffee index 22e2c930a..14268491d 100644 --- a/src/Filtering/PostHiding.coffee +++ b/src/Filtering/PostHiding.coffee @@ -16,7 +16,7 @@ PostHiding = cb: @node node: -> - return if !@isReply or @isClone or @isFetchedQuote + return if @isClone or @isFetchedQuote if data = PostHiding.db.get {boardID: @board.ID, threadID: @thread.ID, postID: @ID} if data.thisPost