1 files changed, 0 insertions, 1 deletions
diff --git a/src/gateway/opcodes/RequestChannelStatuses.ts b/src/gateway/opcodes/RequestChannelStatuses.ts
index 507cfd57..533ece22 100644
--- a/src/gateway/opcodes/RequestChannelStatuses.ts
+++ b/src/gateway/opcodes/RequestChannelStatuses.ts
@@ -19,7 +19,6 @@
import { WebSocket, Payload, OPCODES, Send } from "@spacebar/gateway";
export async function onRequestChannelStatuses(this: WebSocket, { d }: Payload) {
- const startTime = Date.now();
// Schema validation can only accept either string or array, so transforming it here to support both
if (!d.guild_id) throw new Error('"guild_id" is required');
|