1 files changed, 2 insertions, 2 deletions
diff --git a/src/opcodes/Identify.ts b/src/opcodes/Identify.ts
index be805eda..0781afde 100644
--- a/src/opcodes/Identify.ts
+++ b/src/opcodes/Identify.ts
@@ -17,7 +17,7 @@ import { IdentifySchema } from "../schema/Identify";
import { Send } from "../util/Send";
import experiments from "./experiments.json";
import { check } from "./instanceOf";
-import { DefaultOptions, gatewayConfig } from "../util/Config";
+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 } = (gatewayConfig.getAll() as DefaultOptions).security;
+ 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);
|