]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/commitdiff
Fix channel creation limitation
authorChocobozzz <me@florianbigard.com>
Thu, 5 Dec 2019 09:18:33 +0000 (10:18 +0100)
committerChocobozzz <me@florianbigard.com>
Thu, 5 Dec 2019 09:18:33 +0000 (10:18 +0100)
server/middlewares/validators/videos/video-channels.ts

index ce2d61d493005aa8aeb85853c25b3685f2b67efe..ebce14714785ba3ef946cb608723728ef28df695 100644 (file)
@@ -36,7 +36,7 @@ const videoChannelsAddValidator = [
     }
 
     const count = await VideoChannelModel.countByAccount(res.locals.oauth.token.User.Account.id)
-    if (count > VIDEO_CHANNELS.MAX_PER_USER) {
+    if (count >= VIDEO_CHANNELS.MAX_PER_USER) {
       res.status(400)
         .send({ error: `You cannot create more than ${VIDEO_CHANNELS.MAX_PER_USER} channels` })
         .end()