summary refs log tree commit diff
path: root/webrtc/src/opcodes/Identify.ts
diff options
context:
space:
mode:
authorMadeline <46743919+MaddyUnderStars@users.noreply.github.com>2022-07-14 20:54:43 +1000
committerMadeline <46743919+MaddyUnderStars@users.noreply.github.com>2022-07-14 20:54:43 +1000
commita620b3a31a9ad5a00551b14806ba50c2865b91d5 (patch)
tree48d4ae88946097cf0d429f96085f287b7b95803f /webrtc/src/opcodes/Identify.ts
parentRemove a console log from the maddyrtc branch (diff)
parentdumb typing stuff (diff)
downloadserver-a620b3a31a9ad5a00551b14806ba50c2865b91d5.tar.xz
Merge branch 'maddyrtc' into slowcord
Diffstat (limited to '')
-rw-r--r--webrtc/src/opcodes/Identify.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/webrtc/src/opcodes/Identify.ts b/webrtc/src/opcodes/Identify.ts

index ef0386a7..210b5041 100644 --- a/webrtc/src/opcodes/Identify.ts +++ b/webrtc/src/opcodes/Identify.ts
@@ -18,7 +18,7 @@ export interface IdentifyPayload extends Payload { }; } -export async function onIdentify(this: Server, socket: WebSocket, data: IdentifyPayload) { +export async function onIdentify(this: Server, socket: WebSocket, data: Payload) { const session = await Session.findOneOrFail( { session_id: data.d.session_id, },