summaryrefslogtreecommitdiff
path: root/src/client/app/common/scripts
diff options
context:
space:
mode:
authorsyuilo <Syuilotan@yahoo.co.jp>2018-05-19 20:50:43 +0900
committerGitHub <noreply@github.com>2018-05-19 20:50:43 +0900
commite52246a5f0516f621f59e635b6bb53ae86a93dc6 (patch)
tree47903f815bf335f43d263e25355a2274197668cc /src/client/app/common/scripts
parentNew translations ja.yml (Korean) (diff)
parent[wip] better mobile setting (diff)
downloadmisskey-e52246a5f0516f621f59e635b6bb53ae86a93dc6.tar.gz
misskey-e52246a5f0516f621f59e635b6bb53ae86a93dc6.tar.bz2
misskey-e52246a5f0516f621f59e635b6bb53ae86a93dc6.zip
Merge branch 'master' into l10n_master
Diffstat (limited to 'src/client/app/common/scripts')
-rw-r--r--src/client/app/common/scripts/streaming/channel.ts13
1 files changed, 0 insertions, 13 deletions
diff --git a/src/client/app/common/scripts/streaming/channel.ts b/src/client/app/common/scripts/streaming/channel.ts
deleted file mode 100644
index be68ec0997..0000000000
--- a/src/client/app/common/scripts/streaming/channel.ts
+++ /dev/null
@@ -1,13 +0,0 @@
-import Stream from './stream';
-import MiOS from '../../../mios';
-
-/**
- * Channel stream connection
- */
-export default class Connection extends Stream {
- constructor(os: MiOS, channelId) {
- super(os, 'channel', {
- channel: channelId
- });
- }
-}