diff options
author | Madeline <46743919+MaddyUnderStars@users.noreply.github.com> | 2022-07-13 20:34:02 +1000 |
---|---|---|
committer | Madeline <46743919+MaddyUnderStars@users.noreply.github.com> | 2022-07-13 20:34:02 +1000 |
commit | 46b359f21a5de111e0917dc04be674256980fc9b (patch) | |
tree | add442739ddaad2093f64c302cbc7ec4d049d8bc | |
parent | /channel/:id/messages/:id/ack responds with { token: null } on discord.com (diff) | |
download | server-46b359f21a5de111e0917dc04be674256980fc9b.tar.xz |
Remove a console log from the maddyrtc branch
-rw-r--r-- | gateway/src/opcodes/Identify.ts | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/gateway/src/opcodes/Identify.ts b/gateway/src/opcodes/Identify.ts index becc6e9a..301f714d 100644 --- a/gateway/src/opcodes/Identify.ts +++ b/gateway/src/opcodes/Identify.ts @@ -34,8 +34,6 @@ import { Recipient } from "@fosscord/util"; // TODO: check if already identified export async function onIdentify(this: WebSocket, data: Payload) { - console.log(data); - clearTimeout(this.readyTimeout); if (typeof data.d?.client_state?.highest_last_message_id === "number") data.d.client_state.highest_last_message_id += ""; |