diff options
Diffstat (limited to 'server/middlewares/validators/video-channels.ts')
-rw-r--r-- | server/middlewares/validators/video-channels.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/middlewares/validators/video-channels.ts b/server/middlewares/validators/video-channels.ts index 660390080..068fd210f 100644 --- a/server/middlewares/validators/video-channels.ts +++ b/server/middlewares/validators/video-channels.ts | |||
@@ -78,7 +78,7 @@ const videoChannelsRemoveValidator = [ | |||
78 | if (!await isVideoChannelExist(req.params.id, res)) return | 78 | if (!await isVideoChannelExist(req.params.id, res)) return |
79 | 79 | ||
80 | // Check if the user who did the request is able to delete the video | 80 | // Check if the user who did the request is able to delete the video |
81 | if (!checkUserCanDeleteVideoChannel(res.locals.user, res.locals.videoChannel, res)) return | 81 | if (!checkUserCanDeleteVideoChannel(res.locals.oauth.token.User, res.locals.videoChannel, res)) return |
82 | if (!await checkVideoChannelIsNotTheLastOne(res)) return | 82 | if (!await checkVideoChannelIsNotTheLastOne(res)) return |
83 | 83 | ||
84 | return next() | 84 | return next() |