diff --git a/4chan_x.user.js b/4chan_x.user.js index 4c8d34686..b44453cc6 100644 --- a/4chan_x.user.js +++ b/4chan_x.user.js @@ -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) { diff --git a/script.coffee b/script.coffee index eb009002e..bb7d6cb78 100644 --- a/script.coffee +++ b/script.coffee @@ -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.