diff --git a/LICENSE b/LICENSE index 47fc3ba56..814612016 100644 --- a/LICENSE +++ b/LICENSE @@ -1,5 +1,5 @@ /* -* appchan x - Version 2.10.4 - 2015-01-21 +* appchan x - Version 2.10.4 - 2015-01-22 * * Licensed under the MIT license. * https://github.com/zixaphir/appchan-x/blob/master/LICENSE diff --git a/builds/appchan-x.user.js b/builds/appchan-x.user.js index 43502ad14..0900c99cf 100644 --- a/builds/appchan-x.user.js +++ b/builds/appchan-x.user.js @@ -28,7 +28,7 @@ // ==/UserScript== /* -* appchan x - Version 2.10.4 - 2015-01-21 +* appchan x - Version 2.10.4 - 2015-01-22 * * Licensed under the MIT license. * https://github.com/zixaphir/appchan-x/blob/master/LICENSE @@ -7711,6 +7711,9 @@ if (this.isClone || this.isFetchedQuote) { return; } + if (g.VIEW === 'thread' && !this.isReply) { + return; + } if (data = PostHiding.db.get({ boardID: this.board.ID, threadID: this.thread.ID, diff --git a/builds/crx/script.js b/builds/crx/script.js index 2b0b29e4f..09c0de3a3 100644 --- a/builds/crx/script.js +++ b/builds/crx/script.js @@ -1,6 +1,6 @@ // Generated by CoffeeScript /* -* appchan x - Version 2.10.4 - 2015-01-21 +* appchan x - Version 2.10.4 - 2015-01-22 * * Licensed under the MIT license. * https://github.com/zixaphir/appchan-x/blob/master/LICENSE @@ -7752,6 +7752,9 @@ if (this.isClone || this.isFetchedQuote) { return; } + if (g.VIEW === 'thread' && !this.isReply) { + return; + } if (data = PostHiding.db.get({ boardID: this.board.ID, threadID: this.thread.ID, diff --git a/src/Filtering/PostHiding.coffee b/src/Filtering/PostHiding.coffee index 14268491d..3bdd9026b 100644 --- a/src/Filtering/PostHiding.coffee +++ b/src/Filtering/PostHiding.coffee @@ -17,6 +17,7 @@ PostHiding = node: -> return if @isClone or @isFetchedQuote + return if g.VIEW is 'thread' and not @isReply if data = PostHiding.db.get {boardID: @board.ID, threadID: @thread.ID, postID: @ID} if data.thisPost