And this is why you should do you bugtesting on the source

Not the compiled output.
This commit is contained in:
Zixaphir 2013-05-10 15:56:14 -07:00
parent 2ced33b8e2
commit 17755b435b
4 changed files with 8 additions and 8 deletions

View File

@ -7257,8 +7257,8 @@
continue; continue;
} }
count++; count++;
node = Build.postFromObject(postObject, ThreadUpdater.thread.board); node = Build.postFromObject(postObject, ThreadUpdater.thread.board.ID);
posts.push(new Post(node, ThreadUpdater.thread, ThreadUpdater.thread.board.ID)); posts.push(new Post(node, ThreadUpdater.thread, ThreadUpdater.thread.board));
} }
deletedPosts = []; deletedPosts = [];
deletedFiles = []; deletedFiles = [];

View File

@ -7266,8 +7266,8 @@
continue; continue;
} }
count++; count++;
node = Build.postFromObject(postObject, ThreadUpdater.thread.board); node = Build.postFromObject(postObject, ThreadUpdater.thread.board.ID);
posts.push(new Post(node, ThreadUpdater.thread, ThreadUpdater.thread.board.ID)); posts.push(new Post(node, ThreadUpdater.thread, ThreadUpdater.thread.board));
} }
deletedPosts = []; deletedPosts = [];
deletedFiles = []; deletedFiles = [];

View File

@ -7244,8 +7244,8 @@
continue; continue;
} }
count++; count++;
node = Build.postFromObject(postObject, ThreadUpdater.thread.board); node = Build.postFromObject(postObject, ThreadUpdater.thread.board.ID);
posts.push(new Post(node, ThreadUpdater.thread, ThreadUpdater.thread.board.ID)); posts.push(new Post(node, ThreadUpdater.thread, ThreadUpdater.thread.board));
} }
deletedPosts = []; deletedPosts = [];
deletedFiles = []; deletedFiles = [];

View File

@ -268,8 +268,8 @@ ThreadUpdater =
continue if num <= ThreadUpdater.lastPost continue if num <= ThreadUpdater.lastPost
# Insert new posts, not older ones. # Insert new posts, not older ones.
count++ count++
node = Build.postFromObject postObject, ThreadUpdater.thread.board node = Build.postFromObject postObject, ThreadUpdater.thread.board.ID
posts.push new Post node, ThreadUpdater.thread, ThreadUpdater.thread.board.ID posts.push new Post node, ThreadUpdater.thread, ThreadUpdater.thread.board
deletedPosts = [] deletedPosts = []
deletedFiles = [] deletedFiles = []