Skip to content

Commit e0b5194

Browse files
committed
コメント修正、fmt 適用
1 parent dc2e4db commit e0b5194

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

Sora/VideoMute.swift

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)