Fix #854
This commit is contained in:
parent
a65c353597
commit
5865fab83c
@ -7715,7 +7715,7 @@
|
|||||||
},
|
},
|
||||||
node: function() {
|
node: function() {
|
||||||
var a, data, label;
|
var a, data, label;
|
||||||
if (!this.isReply || this.isClone || this.isFetchedQuote) {
|
if (this.isClone || this.isFetchedQuote) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if (data = PostHiding.db.get({
|
if (data = PostHiding.db.get({
|
||||||
|
|||||||
@ -7749,7 +7749,7 @@
|
|||||||
},
|
},
|
||||||
node: function() {
|
node: function() {
|
||||||
var a, data, label;
|
var a, data, label;
|
||||||
if (!this.isReply || this.isClone || this.isFetchedQuote) {
|
if (this.isClone || this.isFetchedQuote) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if (data = PostHiding.db.get({
|
if (data = PostHiding.db.get({
|
||||||
|
|||||||
@ -16,7 +16,7 @@ PostHiding =
|
|||||||
cb: @node
|
cb: @node
|
||||||
|
|
||||||
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 = PostHiding.db.get {boardID: @board.ID, threadID: @thread.ID, postID: @ID}
|
||||||
if data.thisPost
|
if data.thisPost
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user