diff options
Diffstat (limited to 'server/helpers')
-rw-r--r-- | server/helpers/middlewares/accounts.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/server/helpers/middlewares/accounts.ts b/server/helpers/middlewares/accounts.ts index fa4a51e6c..e9b981262 100644 --- a/server/helpers/middlewares/accounts.ts +++ b/server/helpers/middlewares/accounts.ts | |||
@@ -39,11 +39,11 @@ async function doesAccountExist (p: Bluebird<MAccountDefault>, res: Response, se | |||
39 | return true | 39 | return true |
40 | } | 40 | } |
41 | 41 | ||
42 | async function doesUserFeedTokenCorrespond (id: number | string, token: string, res: Response) { | 42 | async function doesUserFeedTokenCorrespond (id: number, token: string, res: Response) { |
43 | const user = await UserModel.loadByIdWithChannels(parseInt(id + '', 10)) | 43 | const user = await UserModel.loadByIdWithChannels(parseInt(id + '', 10)) |
44 | 44 | ||
45 | if (token !== user.feedToken) { | 45 | if (token !== user.feedToken) { |
46 | res.status(401) | 46 | res.status(403) |
47 | .json({ error: 'User and token mismatch' }) | 47 | .json({ error: 'User and token mismatch' }) |
48 | 48 | ||
49 | return false | 49 | return false |