diff --git a/apps/macos/Sources/Clawdis/CameraCaptureService.swift b/apps/macos/Sources/Clawdis/CameraCaptureService.swift index cf2d133d5..d82f83731 100644 --- a/apps/macos/Sources/Clawdis/CameraCaptureService.swift +++ b/apps/macos/Sources/Clawdis/CameraCaptureService.swift @@ -73,7 +73,7 @@ actor CameraCaptureService { settings.photoQualityPrioritization = .quality var delegate: PhotoCaptureDelegate? - let rawData: Data = try await withCheckedThrowingContinuation(isolation: nil) { cont in + let rawData: Data = try await withCheckedThrowingContinuation { cont in let d = PhotoCaptureDelegate(cont) delegate = d output.capturePhoto(with: settings, delegate: d) @@ -156,7 +156,7 @@ actor CameraCaptureService { let logger = self.logger var delegate: MovieFileDelegate? - let recordedURL: URL = try await withCheckedThrowingContinuation(isolation: nil) { cont in + let recordedURL: URL = try await withCheckedThrowingContinuation { cont in let d = MovieFileDelegate(cont, logger: logger) delegate = d output.startRecording(to: tmpMovURL, recordingDelegate: d)