summaryrefslogtreecommitdiff
path: root/client-web/source/user.ts
diff options
context:
space:
mode:
authormetamuffin <metamuffin@disroot.org>2022-09-09 13:01:50 +0200
committermetamuffin <metamuffin@disroot.org>2022-09-09 13:01:50 +0200
commite9aa676207be6e1b11863778deddba59109d88fb (patch)
treee525c971a1538bdc41a534b29ffbf61d23bcd72c /client-web/source/user.ts
parente590ea788aefe0714bb9ce24976303566a648d42 (diff)
downloadkeks-meet-e9aa676207be6e1b11863778deddba59109d88fb.tar
keks-meet-e9aa676207be6e1b11863778deddba59109d88fb.tar.bz2
keks-meet-e9aa676207be6e1b11863778deddba59109d88fb.tar.zst
works!
Diffstat (limited to 'client-web/source/user.ts')
-rw-r--r--client-web/source/user.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/client-web/source/user.ts b/client-web/source/user.ts
index 057cdf4..0bdf250 100644
--- a/client-web/source/user.ts
+++ b/client-web/source/user.ts
@@ -11,7 +11,7 @@ export abstract class User {
public name?: string
protected tracks: Set<TrackHandle> = new Set()
- constructor(public room: Room, public id: number,) {
+ constructor(public room: Room, public id: number) {
this.el = document.createElement("div")
this.el.classList.add("user")
this.room.el.append(this.el)