diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2018-05-19 20:50:43 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-05-19 20:50:43 +0900 |
| commit | e52246a5f0516f621f59e635b6bb53ae86a93dc6 (patch) | |
| tree | 47903f815bf335f43d263e25355a2274197668cc /src/client/app/common/scripts | |
| parent | New translations ja.yml (Korean) (diff) | |
| parent | [wip] better mobile setting (diff) | |
| download | misskey-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.ts | 13 |
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 - }); - } -} |