This commit is contained in:
Mayhem 2013-05-10 14:36:27 +02:00
parent 7ad882ff2d
commit aace44479e
2 changed files with 2 additions and 2 deletions

View File

@ -84,7 +84,7 @@ ExpandThread =
if post = thread.posts[reply.no]
nodes.push post.nodes.root
continue
node = Build.postFromObject reply, thread.board
node = Build.postFromObject reply, thread.board.ID
post = new Post node, thread, thread.board
link = $ 'a[title="Highlight this post"]', node
link.href = "res/#{thread}#p#{post}"

View File

@ -210,7 +210,7 @@ ThreadUpdater =
continue if num <= ThreadUpdater.lastPost
# Insert new posts, not older ones.
count++
node = Build.postFromObject postObject, ThreadUpdater.thread.board
node = Build.postFromObject postObject, ThreadUpdater.thread.board.ID
nodes.push node
posts.push new Post node, ThreadUpdater.thread, ThreadUpdater.thread.board