This commit is contained in:
tamaina 2021-09-12 01:27:20 +09:00
parent 8cafc4ee55
commit 380d357a74
1 changed files with 5 additions and 7 deletions

View File

@ -47,8 +47,8 @@ export default class Connection {
this.wsConnection.on('message', this.onWsConnectionMessage);
this.subscriber.on('broadcast', async ev => {
this.onBroadcastMessage(ev.type, ev.body);
this.subscriber.on('broadcast', data => {
this.onBroadcastMessage(data);
});
if (this.user) {
@ -58,9 +58,7 @@ export default class Connection {
this.updateFollowingChannels();
this.updateUserProfile();
this.subscriber.on(`user:${this.user.id}`, ev => {
this.onUserEvent(ev);
});
this.subscriber.on(`user:${this.user.id}`, this.onUserEvent);
}
}
@ -146,8 +144,8 @@ export default class Connection {
}
@autobind
private onBroadcastMessage(type: string, body: any) {
this.sendMessageToWs(type, body);
private onBroadcastMessage(data: StreamMessages['broadcast']['spec']) {
this.sendMessageToWs(data.type, data.body);
}
@autobind