Fix bug
This commit is contained in:
parent
361ab00c61
commit
305915611e
@ -24,6 +24,7 @@ export default class Connection {
|
|||||||
public subscriber: Xev;
|
public subscriber: Xev;
|
||||||
private channels: Channel[] = [];
|
private channels: Channel[] = [];
|
||||||
private subscribingNotes: any = {};
|
private subscribingNotes: any = {};
|
||||||
|
public sendMessageToWsOverride: any = null; // 後方互換性のため
|
||||||
|
|
||||||
constructor(
|
constructor(
|
||||||
wsConnection: websocket.connection,
|
wsConnection: websocket.connection,
|
||||||
@ -164,6 +165,7 @@ export default class Connection {
|
|||||||
*/
|
*/
|
||||||
@autobind
|
@autobind
|
||||||
public sendMessageToWs(type: string, payload: any) {
|
public sendMessageToWs(type: string, payload: any) {
|
||||||
|
if (this.sendMessageToWsOverride) return this.sendMessageToWsOverride(type, payload); // 後方互換性のため
|
||||||
this.wsConnection.send(JSON.stringify({
|
this.wsConnection.send(JSON.stringify({
|
||||||
type: type,
|
type: type,
|
||||||
body: payload
|
body: payload
|
||||||
|
@ -25,7 +25,7 @@ module.exports = (server: http.Server) => {
|
|||||||
|
|
||||||
// 後方互換性のため
|
// 後方互換性のため
|
||||||
if (request.resourceURL.pathname !== '/streaming') {
|
if (request.resourceURL.pathname !== '/streaming') {
|
||||||
main.sendMessageToWs = (type: string, payload: any) => {
|
main.sendMessageToWsOverride = (type: string, payload: any) => {
|
||||||
if (type == 'channel') {
|
if (type == 'channel') {
|
||||||
type = payload.type;
|
type = payload.type;
|
||||||
payload = payload.body;
|
payload = payload.body;
|
||||||
@ -35,13 +35,12 @@ module.exports = (server: http.Server) => {
|
|||||||
body: payload
|
body: payload
|
||||||
}));
|
}));
|
||||||
};
|
};
|
||||||
if (request.resourceURL.pathname === '/') {
|
|
||||||
main.connectChannel(Math.random().toString(), null,
|
main.connectChannel(Math.random().toString(), null,
|
||||||
request.resourceURL.pathname === '/' ? channels.homeTimeline :
|
request.resourceURL.pathname === '/' ? channels.homeTimeline :
|
||||||
request.resourceURL.pathname === '/local-timeline' ? channels.localTimeline :
|
request.resourceURL.pathname === '/local-timeline' ? channels.localTimeline :
|
||||||
request.resourceURL.pathname === '/hybrid-timeline' ? channels.hybridTimeline :
|
request.resourceURL.pathname === '/hybrid-timeline' ? channels.hybridTimeline :
|
||||||
request.resourceURL.pathname === '/global-timeline' ? channels.globalTimeline : null);
|
request.resourceURL.pathname === '/global-timeline' ? channels.globalTimeline : null);
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
connection.once('close', () => {
|
connection.once('close', () => {
|
||||||
|
Loading…
Reference in New Issue
Block a user