Found it.
This commit is contained in:
parent
6dfe5d3945
commit
2ced33b8e2
@ -7258,7 +7258,7 @@
|
|||||||
}
|
}
|
||||||
count++;
|
count++;
|
||||||
node = Build.postFromObject(postObject, ThreadUpdater.thread.board);
|
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 = [];
|
deletedPosts = [];
|
||||||
deletedFiles = [];
|
deletedFiles = [];
|
||||||
|
|||||||
@ -7267,7 +7267,7 @@
|
|||||||
}
|
}
|
||||||
count++;
|
count++;
|
||||||
node = Build.postFromObject(postObject, ThreadUpdater.thread.board);
|
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 = [];
|
deletedPosts = [];
|
||||||
deletedFiles = [];
|
deletedFiles = [];
|
||||||
|
|||||||
@ -7245,7 +7245,7 @@
|
|||||||
}
|
}
|
||||||
count++;
|
count++;
|
||||||
node = Build.postFromObject(postObject, ThreadUpdater.thread.board);
|
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 = [];
|
deletedPosts = [];
|
||||||
deletedFiles = [];
|
deletedFiles = [];
|
||||||
|
|||||||
@ -269,7 +269,7 @@ ThreadUpdater =
|
|||||||
# 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
|
||||||
posts.push new Post node, ThreadUpdater.thread, ThreadUpdater.thread.board
|
posts.push new Post node, ThreadUpdater.thread, ThreadUpdater.thread.board.ID
|
||||||
|
|
||||||
deletedPosts = []
|
deletedPosts = []
|
||||||
deletedFiles = []
|
deletedFiles = []
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user