summaryrefslogtreecommitdiff
path: root/src/server/api/streaming.ts
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/server/api/streaming.ts
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/server/api/streaming.ts')
-rw-r--r--src/server/api/streaming.ts6
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);