And this is why you should do you bugtesting on the source
Not the compiled output.
This commit is contained in:
parent
2ced33b8e2
commit
17755b435b
@ -7257,8 +7257,8 @@
|
||||
continue;
|
||||
}
|
||||
count++;
|
||||
node = Build.postFromObject(postObject, ThreadUpdater.thread.board);
|
||||
posts.push(new Post(node, ThreadUpdater.thread, ThreadUpdater.thread.board.ID));
|
||||
node = Build.postFromObject(postObject, ThreadUpdater.thread.board.ID);
|
||||
posts.push(new Post(node, ThreadUpdater.thread, ThreadUpdater.thread.board));
|
||||
}
|
||||
deletedPosts = [];
|
||||
deletedFiles = [];
|
||||
|
||||
@ -7266,8 +7266,8 @@
|
||||
continue;
|
||||
}
|
||||
count++;
|
||||
node = Build.postFromObject(postObject, ThreadUpdater.thread.board);
|
||||
posts.push(new Post(node, ThreadUpdater.thread, ThreadUpdater.thread.board.ID));
|
||||
node = Build.postFromObject(postObject, ThreadUpdater.thread.board.ID);
|
||||
posts.push(new Post(node, ThreadUpdater.thread, ThreadUpdater.thread.board));
|
||||
}
|
||||
deletedPosts = [];
|
||||
deletedFiles = [];
|
||||
|
||||
@ -7244,8 +7244,8 @@
|
||||
continue;
|
||||
}
|
||||
count++;
|
||||
node = Build.postFromObject(postObject, ThreadUpdater.thread.board);
|
||||
posts.push(new Post(node, ThreadUpdater.thread, ThreadUpdater.thread.board.ID));
|
||||
node = Build.postFromObject(postObject, ThreadUpdater.thread.board.ID);
|
||||
posts.push(new Post(node, ThreadUpdater.thread, ThreadUpdater.thread.board));
|
||||
}
|
||||
deletedPosts = [];
|
||||
deletedFiles = [];
|
||||
|
||||
@ -268,8 +268,8 @@ ThreadUpdater =
|
||||
continue if num <= ThreadUpdater.lastPost
|
||||
# Insert new posts, not older ones.
|
||||
count++
|
||||
node = Build.postFromObject postObject, ThreadUpdater.thread.board
|
||||
posts.push new Post node, ThreadUpdater.thread, ThreadUpdater.thread.board.ID
|
||||
node = Build.postFromObject postObject, ThreadUpdater.thread.board.ID
|
||||
posts.push new Post node, ThreadUpdater.thread, ThreadUpdater.thread.board
|
||||
|
||||
deletedPosts = []
|
||||
deletedFiles = []
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user