Forgot a "not"
This commit is contained in:
parent
909bc510bc
commit
8f2619d2f1
@ -5804,7 +5804,7 @@
|
||||
} else if (!index.contains(ID)) {
|
||||
post.kill();
|
||||
deletedPosts.push(post);
|
||||
} else if (post.file && !post.file.isDead && files.contains(ID)) {
|
||||
} else if (post.file && !post.file.isDead && !files.contains(ID)) {
|
||||
post.kill(true);
|
||||
deletedFiles.push(post);
|
||||
}
|
||||
|
||||
@ -3954,7 +3954,7 @@ ThreadUpdater =
|
||||
else unless index.contains ID
|
||||
post.kill()
|
||||
deletedPosts.push post
|
||||
else if post.file and !post.file.isDead and files.contains ID
|
||||
else if post.file and !post.file.isDead and not files.contains ID
|
||||
post.kill true
|
||||
deletedFiles.push post
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user