diff options
| author | metamuffin <metamuffin@disroot.org> | 2022-09-11 10:58:32 +0200 |
|---|---|---|
| committer | metamuffin <metamuffin@disroot.org> | 2022-09-11 10:58:32 +0200 |
| commit | a531db81ebfc79b36f12c0aebc4192cad5b661d2 (patch) | |
| tree | 26f484e262fa0aa7d7ad7cbad82239b9182b0011 /client-web/source/user | |
| parent | fb5faafbc91c7779a7cae88bfe16652be6220df2 (diff) | |
| download | keks-meet-a531db81ebfc79b36f12c0aebc4192cad5b661d2.tar keks-meet-a531db81ebfc79b36f12c0aebc4192cad5b661d2.tar.bz2 keks-meet-a531db81ebfc79b36f12c0aebc4192cad5b661d2.tar.zst | |
keybinds
Diffstat (limited to 'client-web/source/user')
| -rw-r--r-- | client-web/source/user/mod.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client-web/source/user/mod.ts b/client-web/source/user/mod.ts index b01dc16..e2db9e9 100644 --- a/client-web/source/user/mod.ts +++ b/client-web/source/user/mod.ts @@ -9,7 +9,7 @@ import { TrackHandle } from "../track_handle.ts"; export abstract class User { protected el: HTMLElement public local = false - protected tracks: Set<TrackHandle> = new Set() + public tracks: Set<TrackHandle> = new Set() private name_el = document.createElement("span") private _name?: string |