Found it.

This commit is contained in:
Zixaphir 2013-05-10 14:35:57 -07:00
parent 6dfe5d3945
commit 2ced33b8e2
4 changed files with 4 additions and 4 deletions

View File

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

View File

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

View File

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

View File

@ -269,7 +269,7 @@ ThreadUpdater =
# Insert new posts, not older ones.
count++
node = Build.postFromObject postObject, ThreadUpdater.thread.board
posts.push new Post node, ThreadUpdater.thread, ThreadUpdater.thread.board
posts.push new Post node, ThreadUpdater.thread, ThreadUpdater.thread.board.ID
deletedPosts = []
deletedFiles = []