Merge branch 'v3'
This commit is contained in:
commit
e506bb5a5c
@ -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 = [];
|
||||||
|
|||||||
@ -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 = [];
|
||||||
|
|||||||
@ -9540,8 +9540,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 = [];
|
||||||
|
|||||||
@ -269,8 +269,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 = []
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user