diff options
Diffstat (limited to 'server/models/video')
-rw-r--r-- | server/models/video/video-comment.ts | 3 | ||||
-rw-r--r-- | server/models/video/video-playlist.ts | 1 |
2 files changed, 4 insertions, 0 deletions
diff --git a/server/models/video/video-comment.ts b/server/models/video/video-comment.ts index 7f28b86b4..fa77455bc 100644 --- a/server/models/video/video-comment.ts +++ b/server/models/video/video-comment.ts | |||
@@ -874,7 +874,10 @@ export class VideoCommentModel extends Model<Partial<AttributesOnly<VideoComment | |||
874 | return { | 874 | return { |
875 | type: 'Note' as 'Note', | 875 | type: 'Note' as 'Note', |
876 | id: this.url, | 876 | id: this.url, |
877 | |||
877 | content: this.text, | 878 | content: this.text, |
879 | mediaType: 'text/markdown', | ||
880 | |||
878 | inReplyTo, | 881 | inReplyTo, |
879 | updated: this.updatedAt.toISOString(), | 882 | updated: this.updatedAt.toISOString(), |
880 | published: this.createdAt.toISOString(), | 883 | published: this.createdAt.toISOString(), |
diff --git a/server/models/video/video-playlist.ts b/server/models/video/video-playlist.ts index 0d43c795e..c125db3ff 100644 --- a/server/models/video/video-playlist.ts +++ b/server/models/video/video-playlist.ts | |||
@@ -679,6 +679,7 @@ export class VideoPlaylistModel extends Model<Partial<AttributesOnly<VideoPlayli | |||
679 | type: 'Playlist' as 'Playlist', | 679 | type: 'Playlist' as 'Playlist', |
680 | name: this.name, | 680 | name: this.name, |
681 | content: this.description, | 681 | content: this.description, |
682 | mediaType: 'text/markdown' as 'text/markdown', | ||
682 | uuid: this.uuid, | 683 | uuid: this.uuid, |
683 | published: this.createdAt.toISOString(), | 684 | published: this.createdAt.toISOString(), |
684 | updated: this.updatedAt.toISOString(), | 685 | updated: this.updatedAt.toISOString(), |