diff --git a/4chan_x.user.js b/4chan_x.user.js index 04e3726c5..4b04b0d60 100644 --- a/4chan_x.user.js +++ b/4chan_x.user.js @@ -2990,7 +2990,7 @@ if (post.no <= id) { break; } - nodes.push(Build.postFromObject(post)); + nodes.push(Build.postFromObject(post, g.BOARD)); } count = nodes.length; if (Conf['Verbose']) { diff --git a/script.coffee b/script.coffee index c0878345d..6867e9db9 100644 --- a/script.coffee +++ b/script.coffee @@ -2386,7 +2386,7 @@ Updater = nodes = [] for post in posts.reverse() break if post.no <= id # Make sure to not insert older posts. - nodes.push Build.postFromObject post + nodes.push Build.postFromObject post, g.BOARD count = nodes.length if Conf['Verbose']