Fix.
This commit is contained in:
parent
fddbd989b3
commit
b95dc1d9a2
@ -2990,7 +2990,7 @@
|
|||||||
if (post.no <= id) {
|
if (post.no <= id) {
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
nodes.push(Build.postFromObject(post));
|
nodes.push(Build.postFromObject(post, g.BOARD));
|
||||||
}
|
}
|
||||||
count = nodes.length;
|
count = nodes.length;
|
||||||
if (Conf['Verbose']) {
|
if (Conf['Verbose']) {
|
||||||
|
|||||||
@ -2386,7 +2386,7 @@ Updater =
|
|||||||
nodes = []
|
nodes = []
|
||||||
for post in posts.reverse()
|
for post in posts.reverse()
|
||||||
break if post.no <= id # Make sure to not insert older posts.
|
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
|
count = nodes.length
|
||||||
if Conf['Verbose']
|
if Conf['Verbose']
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user