1
0
mirror of https://github.com/misskey-dev/misskey.git synced 2026-05-02 02:45:55 +02:00

ストリーミングAPIでチャンネルに接続したときにconnectedメッセージを返すように

This commit is contained in:
syuilo
2018-10-10 03:28:11 +09:00
parent aba84612a7
commit fb1e05c2e9

View File

@@ -181,6 +181,9 @@ export default class Connection {
const channel = new channelClass(id, this);
this.channels.push(channel);
channel.init(params);
this.sendMessageToWs('connected', {
id: id
});
}
/**