This commit is contained in:
Nicolas Stepien 2012-09-07 22:10:59 +02:00
parent fddbd989b3
commit b95dc1d9a2
2 changed files with 2 additions and 2 deletions

View File

@ -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']) {

View File

@ -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']