aboutsummaryrefslogtreecommitdiff
path: root/client-web/source/local_user.ts
diff options
context:
space:
mode:
Diffstat (limited to 'client-web/source/local_user.ts')
-rw-r--r--client-web/source/local_user.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/client-web/source/local_user.ts b/client-web/source/local_user.ts
index ca91a19..bfd9459 100644
--- a/client-web/source/local_user.ts
+++ b/client-web/source/local_user.ts
@@ -13,8 +13,8 @@ export class LocalUser extends User {
mic_gain?: GainNode
default_gain: number = parameter_number("mic_gain", 1)
- constructor(room: Room, name: string) {
- super(room, name)
+ constructor(room: Room, id: number, name: string) {
+ super(room, id, name)
this.el.classList.add("local")
this.local = true
this.create_controls()