summary refs log tree commit diff
path: root/src/opcodes
diff options
context:
space:
mode:
authorFlam3rboy <34555296+Flam3rboy@users.noreply.github.com>2021-05-23 20:48:51 +0200
committerGitHub <noreply@github.com>2021-05-23 20:48:51 +0200
commitf756b20a2b08556b54dbf9667e910569203b07d1 (patch)
tree0a5524e67f305aca11ef507139d80b43f37cf8da /src/opcodes
parent:arrow_up: update dependency (diff)
parentFix: No more typecasting required (diff)
downloadserver-f756b20a2b08556b54dbf9667e910569203b07d1.tar.xz
Merge pull request #69 from DiegoMagdaleno/master
Config updates and StrictNullChecks
Diffstat (limited to '')
-rw-r--r--src/opcodes/Identify.ts4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/opcodes/Identify.ts b/src/opcodes/Identify.ts

index f31eebfe..0781afde 100644 --- a/src/opcodes/Identify.ts +++ b/src/opcodes/Identify.ts
@@ -17,6 +17,7 @@ import { IdentifySchema } from "../schema/Identify"; import { Send } from "../util/Send"; import experiments from "./experiments.json"; import { check } from "./instanceOf"; +import * as Config from "../util/Config"; // TODO: bot sharding // TODO: check priviliged intents @@ -29,7 +30,8 @@ export async function onIdentify(this: WebSocket, data: Payload) { const identify: IdentifySchema = data.d; try { - var decoded = await checkToken(identify.token); // will throw an error if invalid + const { jwtSecret } = Config.gatewayConfig.getAll().security; + var decoded = await checkToken(identify.token, jwtSecret); // will throw an error if invalid } catch (error) { console.error("invalid token", error); return this.close(CLOSECODES.Authentication_failed);