From 0bc1b31d60ed0edf3999f51743b653068ef1816e Mon Sep 17 00:00:00 2001 From: Chocobozzz Date: Wed, 29 Jan 2020 14:56:07 +0100 Subject: [PATCH] Comments enabled attrivute is optional in AP --- server/helpers/custom-validators/activitypub/videos.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/server/helpers/custom-validators/activitypub/videos.ts b/server/helpers/custom-validators/activitypub/videos.ts index fe94bd58a..224f03f4e 100644 --- a/server/helpers/custom-validators/activitypub/videos.ts +++ b/server/helpers/custom-validators/activitypub/videos.ts @@ -56,6 +56,7 @@ function sanitizeAndCheckVideoTorrentObject (video: any) { if (!isVideoStateValid(video.state)) video.state = VideoState.PUBLISHED if (!isBooleanValid(video.waitTranscoding)) video.waitTranscoding = false if (!isBooleanValid(video.downloadEnabled)) video.downloadEnabled = true + if (!isBooleanValid(video.commentsEnabled)) video.commentsEnabled = false return isActivityPubUrlValid(video.id) && isVideoNameValid(video.name) && -- 2.41.0