From 289af24a8ffaa55336bfabca151a71f6e1f82290 Mon Sep 17 00:00:00 2001 From: mountain Date: Tue, 18 Jul 2023 09:55:18 +0900 Subject: [PATCH] =?UTF-8?q?room=20create=20=EB=A9=94=EC=8B=9C=EC=A7=80=20?= =?UTF-8?q?=EC=A0=84=EC=86=A1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- wshandler/wshandler.go | 1 + 1 file changed, 1 insertion(+) diff --git a/wshandler/wshandler.go b/wshandler/wshandler.go index 62fef08..5ff3be0 100644 --- a/wshandler/wshandler.go +++ b/wshandler/wshandler.go @@ -339,6 +339,7 @@ func (sh *subhandler) mainLoop(ctx context.Context) { room = makeRoom(name, roomDestroyChan) rooms[name] = room room.start(ctx) + go sh.callReceiver.OnRoomCreated(sh.region, name) } return room }