diff options
Diffstat (limited to 'server/controllers/api')
-rw-r--r-- | server/controllers/api/users.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/controllers/api/users.ts b/server/controllers/api/users.ts index dcd407fdf..bacfc4552 100644 --- a/server/controllers/api/users.ts +++ b/server/controllers/api/users.ts | |||
@@ -171,7 +171,7 @@ async function getUserInformation (req: express.Request, res: express.Response, | |||
171 | } | 171 | } |
172 | 172 | ||
173 | function getUser (req: express.Request, res: express.Response, next: express.NextFunction) { | 173 | function getUser (req: express.Request, res: express.Response, next: express.NextFunction) { |
174 | return res.json(res.locals.oauth.token.User.toFormattedJSON()) | 174 | return res.json(res.locals.user.toFormattedJSON()) |
175 | } | 175 | } |
176 | 176 | ||
177 | async function getUserVideoRating (req: express.Request, res: express.Response, next: express.NextFunction) { | 177 | async function getUserVideoRating (req: express.Request, res: express.Response, next: express.NextFunction) { |