diff options
Diffstat (limited to 'client-web/source/local_user.ts')
-rw-r--r-- | client-web/source/local_user.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/client-web/source/local_user.ts b/client-web/source/local_user.ts index bb5b779..efedfc2 100644 --- a/client-web/source/local_user.ts +++ b/client-web/source/local_user.ts @@ -12,8 +12,8 @@ export class LocalUser extends User { mic_gain?: GainNode default_gain: number = PREFS.microphone_gain - constructor(room: Room, id: number, name: string) { - super(room, id, name) + constructor(room: Room, id: number) { + super(room, id) this.el.classList.add("local") this.local = true this.create_controls() |