Derp.
This commit is contained in:
parent
774edad77c
commit
6c06547387
@ -1408,9 +1408,7 @@
|
||||
inBoard = g.boards[board] || new Board(board);
|
||||
inThread = g.threads["" + board + "." + threadID] || new Thread(threadID, inBoard);
|
||||
if (!(post = g.posts["" + board + "." + postID])) {
|
||||
post = new Post(postContainer, thread, board, {
|
||||
isArchived: true
|
||||
});
|
||||
post = new Post(postContainer, thread, board);
|
||||
Main.callbackNodes(Post, [post]);
|
||||
}
|
||||
if (!root.parentNode) {
|
||||
|
||||
@ -1197,8 +1197,7 @@ Get =
|
||||
# In case of multiple callbacks for the same request,
|
||||
# don't parse the same original post more than once.
|
||||
unless post = g.posts["#{board}.#{postID}"]
|
||||
post = new Post postContainer, thread, board,
|
||||
isArchived: true
|
||||
post = new Post postContainer, thread, board
|
||||
Main.callbackNodes Post, [post]
|
||||
|
||||
# Stop here if the container has been removed while loading.
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user