Merge pull request #2860 from mei23/mei-1009-v10d

互換ストリーム / に main streamの内容も流す
This commit is contained in:
syuilo 2018-10-09 04:35:08 +09:00 committed by GitHub
commit 7cf72f7447
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -44,6 +44,10 @@ module.exports = (server: http.Server) => {
request.resourceURL.pathname === '/local-timeline' ? channels.localTimeline :
request.resourceURL.pathname === '/hybrid-timeline' ? channels.hybridTimeline :
request.resourceURL.pathname === '/global-timeline' ? channels.globalTimeline : null);
if (request.resourceURL.pathname === '/') {
main.connectChannel(Math.random().toString(), null, channels.main);
}
}
connection.once('close', () => {