]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/commitdiff
Server: fix video remoe validation
authorChocobozzz <florian.bigard@gmail.com>
Fri, 30 Dec 2016 11:39:49 +0000 (12:39 +0100)
committerChocobozzz <florian.bigard@gmail.com>
Fri, 30 Dec 2016 11:39:49 +0000 (12:39 +0100)
server/middlewares/validators/videos.js

index 1b6dbccf08358f44706c04d86f1297596714f9be..295ed05fa054ad99fe2d1d88abe97feb0dfe0f9b 100644 (file)
@@ -78,7 +78,7 @@ function videosRemove (req, res, next) {
         return res.status(403).send('Cannot remove video of another pod')
       }
 
-      if (res.locals.video.authorId !== res.locals.oauth.token.User.id) {
+      if (res.locals.video.Author.userId !== res.locals.oauth.token.User.id) {
         return res.status(403).send('Cannot remove video of another user')
       }