From 6f13f41b722ebc4661e61259e586ec6c9a0976d6 Mon Sep 17 00:00:00 2001 From: ccd0 Date: Thu, 18 Jul 2019 22:53:54 -0700 Subject: [PATCH] These properties should be copied to clones. --- src/classes/Post.Clone.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/classes/Post.Clone.coffee b/src/classes/Post.Clone.coffee index 873eba202..19708c390 100644 --- a/src/classes/Post.Clone.coffee +++ b/src/classes/Post.Clone.coffee @@ -2,7 +2,7 @@ Post.Clone = class extends Post isClone: true constructor: (@origin, @context, contractThumb) -> - for key in ['ID', 'fullID', 'board', 'thread', 'info', 'quotes', 'isReply'] + for key in ['ID', 'threadID', 'boardID', 'siteID', 'fullID', 'board', 'thread', 'info', 'quotes', 'isReply'] # Copy or point to the origin's key value. @[key] = @origin[key]