This commit is contained in:
Zixaphir 2015-01-14 17:24:56 -07:00
parent a65c353597
commit 5865fab83c
3 changed files with 3 additions and 3 deletions

View File

@ -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({

View File

@ -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({

View File

@ -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