From fb1e05c2e9e7e6f98ed097ecb0f49f81ff4a9aa6 Mon Sep 17 00:00:00 2001
From: syuilo <syuilotan@yahoo.co.jp>
Date: Wed, 10 Oct 2018 03:28:11 +0900
Subject: [PATCH] =?UTF-8?q?=E3=82=B9=E3=83=88=E3=83=AA=E3=83=BC=E3=83=9F?=
 =?UTF-8?q?=E3=83=B3=E3=82=B0API=E3=81=A7=E3=83=81=E3=83=A3=E3=83=B3?=
 =?UTF-8?q?=E3=83=8D=E3=83=AB=E3=81=AB=E6=8E=A5=E7=B6=9A=E3=81=97=E3=81=9F?=
 =?UTF-8?q?=E3=81=A8=E3=81=8D=E3=81=ABconnected=E3=83=A1=E3=83=83=E3=82=BB?=
 =?UTF-8?q?=E3=83=BC=E3=82=B8=E3=82=92=E8=BF=94=E3=81=99=E3=82=88=E3=81=86?=
 =?UTF-8?q?=E3=81=AB?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

---
 src/server/api/stream/index.ts | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/src/server/api/stream/index.ts b/src/server/api/stream/index.ts
index 1014343bb..838d84700 100644
--- a/src/server/api/stream/index.ts
+++ b/src/server/api/stream/index.ts
@@ -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
+		});
 	}
 
 	/**