1 files changed, 2 insertions, 2 deletions
diff --git a/gateway/src/util/Constants.ts b/gateway/src/util/Constants.ts
index 5441118b..ff9b5525 100644
--- a/gateway/src/util/Constants.ts
+++ b/gateway/src/util/Constants.ts
@@ -1,4 +1,4 @@
-import { VoiceOPCodes } from "@fosscord/webrtc";
+// import { VoiceOPCodes } from "@fosscord/webrtc";
export enum OPCODES {
Dispatch = 0,
@@ -45,7 +45,7 @@ export enum CLOSECODES {
}
export interface Payload {
- op: OPCODES | VoiceOPCodes;
+ op: OPCODES /* | VoiceOPCodes */;
d?: any;
s?: number;
t?: string;
|