summaryrefslogtreecommitdiff
path: root/src/server/api/stream/channel.ts
diff options
context:
space:
mode:
authorsyuilo <syuilotan@yahoo.co.jp>2018-10-11 23:07:20 +0900
committersyuilo <syuilotan@yahoo.co.jp>2018-10-11 23:07:20 +0900
commite94c73efe252ffb0c440b7676975b7f9d9fb8674 (patch)
treeb0b034ce8e2dbc8de29c07fbb4121632675f3417 /src/server/api/stream/channel.ts
parent共有可能チャンネルに接続しようとしていて、かつその... (diff)
downloadsharkey-e94c73efe252ffb0c440b7676975b7f9d9fb8674.tar.gz
sharkey-e94c73efe252ffb0c440b7676975b7f9d9fb8674.tar.bz2
sharkey-e94c73efe252ffb0c440b7676975b7f9d9fb8674.zip
Fix
Diffstat (limited to 'src/server/api/stream/channel.ts')
-rw-r--r--src/server/api/stream/channel.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/api/stream/channel.ts b/src/server/api/stream/channel.ts
index 3548e4c374..75914964cb 100644
--- a/src/server/api/stream/channel.ts
+++ b/src/server/api/stream/channel.ts
@@ -8,7 +8,7 @@ export default abstract class Channel {
protected connection: Connection;
public id: string;
public abstract readonly chName: string;
- public abstract readonly shouldShare: boolean;
+ public static readonly shouldShare: boolean;
protected get user() {
return this.connection.user;