summary refs log tree commit diff
diff options
context:
space:
mode:
authorMadeline <46743919+MaddyUnderStars@users.noreply.github.com>2022-07-13 20:34:02 +1000
committerMadeline <46743919+MaddyUnderStars@users.noreply.github.com>2022-07-13 20:34:02 +1000
commitdbe96d32f29ec6d0ed22a5459c1e9c1c5ecc529c (patch)
treed1b0f462e7c770132838a082ed60e82c1e995703
parent/channel/:id/messages/:id/ack responds with { token: null } on discord.com (diff)
downloadserver-dbe96d32f29ec6d0ed22a5459c1e9c1c5ecc529c.tar.xz
Remove a console log from the maddyrtc branch
-rw-r--r--gateway/src/opcodes/Identify.ts2
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 += "";