aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/helpers/custom-validators
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2018-03-28 13:45:24 +0200
committerChocobozzz <me@florianbigard.com>2018-03-28 13:45:24 +0200
commit45cd28b679d3472392ed5d77dcfd8f442d1565bf (patch)
tree685a2b74035000b4bba955d290d0c27190b48451 /server/helpers/custom-validators
parent829be6e8b7e9a09f118577745906c19926c20416 (diff)
downloadPeerTube-45cd28b679d3472392ed5d77dcfd8f442d1565bf.tar.gz
PeerTube-45cd28b679d3472392ed5d77dcfd8f442d1565bf.tar.zst
PeerTube-45cd28b679d3472392ed5d77dcfd8f442d1565bf.zip
Remove alpine image
Diffstat (limited to 'server/helpers/custom-validators')
-rw-r--r--server/helpers/custom-validators/activitypub/videos.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/server/helpers/custom-validators/activitypub/videos.ts b/server/helpers/custom-validators/activitypub/videos.ts
index 3af587a32..d8986b2a0 100644
--- a/server/helpers/custom-validators/activitypub/videos.ts
+++ b/server/helpers/custom-validators/activitypub/videos.ts
@@ -57,7 +57,7 @@ function isVideoTorrentObjectValid (video: any) {
57 isBooleanValid(video.commentsEnabled) && 57 isBooleanValid(video.commentsEnabled) &&
58 isDateValid(video.published) && 58 isDateValid(video.published) &&
59 isDateValid(video.updated) && 59 isDateValid(video.updated) &&
60 setTruncatedContent(video) && 60 setRemoteVideoTruncatedContent(video) &&
61 (!video.content || isRemoteVideoContentValid(video.mediaType, video.content)) && 61 (!video.content || isRemoteVideoContentValid(video.mediaType, video.content)) &&
62 isRemoteVideoIconValid(video.icon) && 62 isRemoteVideoIconValid(video.icon) &&
63 setValidRemoteVideoUrls(video) && 63 setValidRemoteVideoUrls(video) &&
@@ -113,7 +113,7 @@ function setValidRemoteVideoUrls (video: any) {
113 return true 113 return true
114} 114}
115 115
116function setTruncatedContent (video: any) { 116function setRemoteVideoTruncatedContent (video: any) {
117 if (video.content) { 117 if (video.content) {
118 video.content = peertubeTruncate(video.content, CONSTRAINTS_FIELDS.VIDEOS.TRUNCATED_DESCRIPTION.max) 118 video.content = peertubeTruncate(video.content, CONSTRAINTS_FIELDS.VIDEOS.TRUNCATED_DESCRIPTION.max)
119 } 119 }