diff options
Diffstat (limited to 'server/middlewares/validators/videos')
-rw-r--r-- | server/middlewares/validators/videos/video-live.ts | 4 | ||||
-rw-r--r-- | server/middlewares/validators/videos/videos.ts | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/server/middlewares/validators/videos/video-live.ts b/server/middlewares/validators/videos/video-live.ts index 9544fa4f5..0fb864098 100644 --- a/server/middlewares/validators/videos/video-live.ts +++ b/server/middlewares/validators/videos/video-live.ts | |||
@@ -104,7 +104,7 @@ const videoLiveAddValidator = getCommonVideoEditAttributes().concat([ | |||
104 | return res.fail({ | 104 | return res.fail({ |
105 | status: HttpStatusCode.FORBIDDEN_403, | 105 | status: HttpStatusCode.FORBIDDEN_403, |
106 | message: 'Cannot create this live because the max instance lives limit is reached.', | 106 | message: 'Cannot create this live because the max instance lives limit is reached.', |
107 | type: ServerErrorCode.MAX_INSTANCE_LIVES_LIMIT_REACHED.toString() | 107 | type: ServerErrorCode.MAX_INSTANCE_LIVES_LIMIT_REACHED |
108 | }) | 108 | }) |
109 | } | 109 | } |
110 | } | 110 | } |
@@ -117,7 +117,7 @@ const videoLiveAddValidator = getCommonVideoEditAttributes().concat([ | |||
117 | 117 | ||
118 | return res.fail({ | 118 | return res.fail({ |
119 | status: HttpStatusCode.FORBIDDEN_403, | 119 | status: HttpStatusCode.FORBIDDEN_403, |
120 | type: ServerErrorCode.MAX_USER_LIVES_LIMIT_REACHED.toString(), | 120 | type: ServerErrorCode.MAX_USER_LIVES_LIMIT_REACHED, |
121 | message: 'Cannot create this live because the max user lives limit is reached.' | 121 | message: 'Cannot create this live because the max user lives limit is reached.' |
122 | }) | 122 | }) |
123 | } | 123 | } |
diff --git a/server/middlewares/validators/videos/videos.ts b/server/middlewares/validators/videos/videos.ts index dfd472400..fd0e543f1 100644 --- a/server/middlewares/validators/videos/videos.ts +++ b/server/middlewares/validators/videos/videos.ts | |||
@@ -253,7 +253,7 @@ async function checkVideoFollowConstraints (req: express.Request, res: express.R | |||
253 | return res.fail({ | 253 | return res.fail({ |
254 | status: HttpStatusCode.FORBIDDEN_403, | 254 | status: HttpStatusCode.FORBIDDEN_403, |
255 | message: 'Cannot get this video regarding follow constraints.', | 255 | message: 'Cannot get this video regarding follow constraints.', |
256 | type: ServerErrorCode.DOES_NOT_RESPECT_FOLLOW_CONSTRAINTS.toString(), | 256 | type: ServerErrorCode.DOES_NOT_RESPECT_FOLLOW_CONSTRAINTS, |
257 | data: { | 257 | data: { |
258 | originUrl: video.url | 258 | originUrl: video.url |
259 | } | 259 | } |