[API] Improve: Better error message
This commit is contained in:
parent
fef3d3f300
commit
89a3d6789c
|
@ -47,7 +47,7 @@ export default (req: express.Request) => new Promise<IAuthContext>(async (resolv
|
||||||
});
|
});
|
||||||
|
|
||||||
if (accessToken === null) {
|
if (accessToken === null) {
|
||||||
return reject('invalid token');
|
return reject('invalid signature');
|
||||||
}
|
}
|
||||||
|
|
||||||
const app = await App
|
const app = await App
|
||||||
|
|
|
@ -68,7 +68,7 @@ function authenticate(connection: websocket.connection, token: string): Promise<
|
||||||
});
|
});
|
||||||
|
|
||||||
if (accessToken == null) {
|
if (accessToken == null) {
|
||||||
return reject('invalid token');
|
return reject('invalid signature');
|
||||||
}
|
}
|
||||||
|
|
||||||
// Fetch user
|
// Fetch user
|
||||||
|
|
Loading…
Reference in New Issue