summaryrefslogtreecommitdiff
path: root/client-web/source/user
diff options
context:
space:
mode:
Diffstat (limited to 'client-web/source/user')
-rw-r--r--client-web/source/user/mod.ts2
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