diff options
Diffstat (limited to 'server/models/video/video-comment.ts')
-rw-r--r-- | server/models/video/video-comment.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/models/video/video-comment.ts b/server/models/video/video-comment.ts index fa4d13c3b..75b914b8c 100644 --- a/server/models/video/video-comment.ts +++ b/server/models/video/video-comment.ts | |||
@@ -655,7 +655,7 @@ export class VideoCommentModel extends Model<VideoCommentModel> { | |||
655 | id: this.id, | 655 | id: this.id, |
656 | url: this.url, | 656 | url: this.url, |
657 | text: this.text, | 657 | text: this.text, |
658 | threadId: this.originCommentId || this.id, | 658 | threadId: this.getThreadId(), |
659 | inReplyToCommentId: this.inReplyToCommentId || null, | 659 | inReplyToCommentId: this.inReplyToCommentId || null, |
660 | videoId: this.videoId, | 660 | videoId: this.videoId, |
661 | createdAt: this.createdAt, | 661 | createdAt: this.createdAt, |