File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ actor VideoHardMuteActor {
4040 // 現在のキャプチャラーが取得できる場合は既に再開済みとして成功扱いにします
4141 let currentCapturer = await currentCameraVideoCapturer ( )
4242 if currentCapturer != nil { return }
43- // 前回停止時のキャプチャラーが保持できていれば restart、なければ新規に start します
43+ // 前回停止時のキャプチャラーが保持できていれば restart、なければ start します
4444 if let stored = capturer {
4545 try await restartCameraVideoCapture ( stored, senderStream: senderStream)
4646 return
@@ -111,7 +111,8 @@ actor VideoHardMuteActor {
111111 switch cameraSettings. position {
112112 case . front:
113113 guard let front = CameraVideoCapturer . front else {
114- continuation. resume ( throwing: SoraError . cameraError ( reason: " front camera is not found " ) )
114+ continuation. resume (
115+ throwing: SoraError . cameraError ( reason: " front camera is not found " ) )
115116 return
116117 }
117118 capturer = front
You can’t perform that action at this time.
0 commit comments