aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2020-06-04 15:17:20 +0200
committerChocobozzz <me@florianbigard.com>2020-06-04 15:17:20 +0200
commit5cb9f0f4f754a36de0c1844783867f2088adfaed (patch)
tree3b4aaea79f8a95934d5d3e4e86c87b1c27bcaa13
parent5072b9092284e96428ed919dbeed60c46dd96ba4 (diff)
downloadPeerTube-5cb9f0f4f754a36de0c1844783867f2088adfaed.tar.gz
PeerTube-5cb9f0f4f754a36de0c1844783867f2088adfaed.tar.zst
PeerTube-5cb9f0f4f754a36de0c1844783867f2088adfaed.zip
Send complete video description in AP messages
-rw-r--r--server/models/video/video-format-utils.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/server/models/video/video-format-utils.ts b/server/models/video/video-format-utils.ts
index 6d38815bb..8bc696055 100644
--- a/server/models/video/video-format-utils.ts
+++ b/server/models/video/video-format-utils.ts
@@ -352,7 +352,7 @@ function videoModelToActivityPubObject (video: MVideoAP): VideoTorrentObject {
352 originallyPublishedAt: video.originallyPublishedAt ? video.originallyPublishedAt.toISOString() : null, 352 originallyPublishedAt: video.originallyPublishedAt ? video.originallyPublishedAt.toISOString() : null,
353 updated: video.updatedAt.toISOString(), 353 updated: video.updatedAt.toISOString(),
354 mediaType: 'text/markdown', 354 mediaType: 'text/markdown',
355 content: video.getTruncatedDescription(), 355 content: video.description,
356 support: video.support, 356 support: video.support,
357 subtitleLanguage, 357 subtitleLanguage,
358 icon: { 358 icon: {