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/server/api/streaming.ts | |
| 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/server/api/streaming.ts')
| -rw-r--r-- | src/server/api/streaming.ts | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/server/api/streaming.ts b/src/server/api/streaming.ts index e4884ed7c4..6825b6336a 100644 --- a/src/server/api/streaming.ts +++ b/src/server/api/streaming.ts @@ -14,7 +14,6 @@ import othelloGameStream from './stream/othello-game'; import othelloStream from './stream/othello'; import serverStream from './stream/server'; import requestsStream from './stream/requests'; -import channelStream from './stream/channel'; import { ParsedUrlQuery } from 'querystring'; import authenticate from './authenticate'; @@ -48,11 +47,6 @@ module.exports = (server: http.Server) => { subscriber.quit(); }); - if (request.resourceURL.pathname === '/channel') { - channelStream(request, connection, subscriber); - return; - } - const q = request.resourceURL.query as ParsedUrlQuery; const [user, app] = await authenticate(q.i as string); |