From 115a30a7b604cdc1f3f19fb80d5662c13d35fea6 Mon Sep 17 00:00:00 2001 From: Yu Sung Date: Sun, 15 Oct 2023 07:28:00 +0900 Subject: [PATCH] =?UTF-8?q?=EC=B1=84=EA=B8=88=20=EC=8B=9C=EA=B0=84?= =?UTF-8?q?=EC=9D=B4=20=EC=84=A4=EC=A0=95=20=EB=90=98=EC=A7=80=20=EC=95=8A?= =?UTF-8?q?=EB=8D=98=20=EB=B2=84=EA=B7=B8=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- SodaLive/Sources/Live/Room/LiveRoomViewModel.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SodaLive/Sources/Live/Room/LiveRoomViewModel.swift b/SodaLive/Sources/Live/Room/LiveRoomViewModel.swift index 2c7f1cb..ec63bcc 100644 --- a/SodaLive/Sources/Live/Room/LiveRoomViewModel.swift +++ b/SodaLive/Sources/Live/Room/LiveRoomViewModel.swift @@ -1261,6 +1261,7 @@ final class LiveRoomViewModel: NSObject, ObservableObject { private func startNoChatting() { isNoChatting = true + remainingNoChattingTime = noChattingTime popupContent = "\(self.getUserNicknameAndProfileUrl(accountId: liveRoomInfo!.creatorId).nickname)님이 3분간 채팅을 금지하였습니다." isShowPopup = true @@ -1279,7 +1280,6 @@ final class LiveRoomViewModel: NSObject, ObservableObject { if self.remainingNoChattingTime <= 0 { self.isNoChatting = false self.timer?.cancel() - self.remainingNoChattingTime = self.noChattingTime self.removeNoChatRoom() self.popupContent = "채팅금지가 해제되었습니다." self.isShowPopup = true