From e287d3e5bd3960fbf8f08d81779ea7ff303f0664 Mon Sep 17 00:00:00 2001 From: Flam3rboy <34555296+Flam3rboy@users.noreply.github.com> Date: Mon, 24 May 2021 20:46:07 +0200 Subject: :sparkles: use new config --- src/opcodes/Identify.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/opcodes/Identify.ts') diff --git a/src/opcodes/Identify.ts b/src/opcodes/Identify.ts index 0781afde..0ddc58d1 100644 --- a/src/opcodes/Identify.ts +++ b/src/opcodes/Identify.ts @@ -11,13 +11,13 @@ import { UserModel, toObject, EVENTEnum, + Config, } from "@fosscord/server-util"; import { setupListener } from "../listener/listener"; 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 @@ -30,7 +30,7 @@ export async function onIdentify(this: WebSocket, data: Payload) { const identify: IdentifySchema = data.d; try { - const { jwtSecret } = Config.gatewayConfig.getAll().security; + 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); -- cgit 1.5.1