aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/controllers/api/users.ts
diff options
context:
space:
mode:
Diffstat (limited to 'server/controllers/api/users.ts')
-rw-r--r--server/controllers/api/users.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/server/controllers/api/users.ts b/server/controllers/api/users.ts
index e79480521..6c375cc5b 100644
--- a/server/controllers/api/users.ts
+++ b/server/controllers/api/users.ts
@@ -100,7 +100,7 @@ function getUserInformation (req: express.Request, res: express.Response, next:
100} 100}
101 101
102function getUserVideoRating (req: express.Request, res: express.Response, next: express.NextFunction) { 102function getUserVideoRating (req: express.Request, res: express.Response, next: express.NextFunction) {
103 const videoId = '' + req.params.videoId 103 const videoId = +req.params.videoId
104 const userId = +res.locals.oauth.token.User.id 104 const userId = +res.locals.oauth.token.User.id
105 105
106 db.UserVideoRate.load(userId, videoId, null) 106 db.UserVideoRate.load(userId, videoId, null)