diff options
author | metamuffin <metamuffin@disroot.org> | 2022-09-16 17:16:38 +0200 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2022-09-16 17:16:38 +0200 |
commit | 969444b32101a45d5917a3947b94bb09c3fc01a1 (patch) | |
tree | ac6d17ad6f3a1535c619aef9eba83179cd4c0878 /client-web/source/room.ts | |
parent | ff2329cac03703a10ce8b3793d707131403318b4 (diff) | |
download | keks-meet-969444b32101a45d5917a3947b94bb09c3fc01a1.tar keks-meet-969444b32101a45d5917a3947b94bb09c3fc01a1.tar.bz2 keks-meet-969444b32101a45d5917a3947b94bb09c3fc01a1.tar.zst |
optional channels (1)
Diffstat (limited to 'client-web/source/room.ts')
-rw-r--r-- | client-web/source/room.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client-web/source/room.ts b/client-web/source/room.ts index 1fa8f86..168a2c2 100644 --- a/client-web/source/room.ts +++ b/client-web/source/room.ts @@ -38,7 +38,7 @@ export class Room { this.on_ready() } else { const ru = new RemoteUser(this, p.id) - this.local_user.add_initial_to_remote(ru) + this.local_user.provide_initial_to_remote(ru) this.local_user.identify(ru.id) } } else if (packet.client_leave) { |