diff options
author | Flam3rboy <34555296+Flam3rboy@users.noreply.github.com> | 2021-10-09 01:53:47 +0200 |
---|---|---|
committer | Flam3rboy <34555296+Flam3rboy@users.noreply.github.com> | 2021-10-09 01:53:47 +0200 |
commit | e573b18cfc72ed1c88fe091d25995f195b023424 (patch) | |
tree | 59a6cb62739d8f51a16cd4013dd9b5dffc94dbb4 /gateway/src/opcodes/VoiceStateUpdate.ts | |
parent | :bug: fix old node version (diff) | |
download | server-e573b18cfc72ed1c88fe091d25995f195b023424.tar.xz |
:bug: fix import
Diffstat (limited to 'gateway/src/opcodes/VoiceStateUpdate.ts')
-rw-r--r-- | gateway/src/opcodes/VoiceStateUpdate.ts | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gateway/src/opcodes/VoiceStateUpdate.ts b/gateway/src/opcodes/VoiceStateUpdate.ts index 084c5766..321e6b17 100644 --- a/gateway/src/opcodes/VoiceStateUpdate.ts +++ b/gateway/src/opcodes/VoiceStateUpdate.ts @@ -1,5 +1,6 @@ import { VoiceStateUpdateSchema } from "../schema/VoiceStateUpdateSchema"; -import { Payload, WebSocket, genVoiceToken } from "@fosscord/gateway"; +import { Payload, WebSocket } from "@fosscord/gateway"; +import { genVoiceToken } from "../util/SessionUtils"; import { check } from "./instanceOf"; import { Config, |