summary refs log tree commit diff
path: root/src/opcodes/Identify.ts
diff options
context:
space:
mode:
authorPaul Munteanu <49862892+luth31@users.noreply.github.com>2021-05-28 03:36:40 +0300
committerPaul Munteanu <49862892+luth31@users.noreply.github.com>2021-05-28 03:36:40 +0300
commitdd24e49be15a9ad36c352f1cbf0f77b72a4297f8 (patch)
treefc8b8ce4c08a3defe933425ae9b0b0ad83ed4d27 /src/opcodes/Identify.ts
parentFix compilation with strictNullChecks: true (diff)
parentMerge pull request #70 from 9qz/master (diff)
downloadserver-dd24e49be15a9ad36c352f1cbf0f77b72a4297f8.tar.xz
Merge branch 'fosscord:master' into master
Diffstat (limited to 'src/opcodes/Identify.ts')
-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..0ddc58d1 100644 --- a/src/opcodes/Identify.ts +++ b/src/opcodes/Identify.ts
@@ -11,6 +11,7 @@ import { UserModel, toObject, EVENTEnum, + Config, } from "@fosscord/server-util"; import { setupListener } from "../listener/listener"; import { IdentifySchema } from "../schema/Identify"; @@ -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.get().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);