Skip to content

Commit

Permalink
Fix Xcode 14.2 compile
Browse files Browse the repository at this point in the history
  • Loading branch information
hiroshihorie committed Aug 13, 2024
1 parent 7fdbb0c commit 478c281
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Sources/LiveKit/Track/Capturers/CameraCapturer.swift
Original file line number Diff line number Diff line change
Expand Up @@ -97,12 +97,12 @@ public class CameraCapturer: VideoCapturer {
public var captureSession: AVCaptureSession {
#if os(iOS)
if AVCaptureMultiCamSession.isMultiCamSupported {
Self._multiCamSession
return Self._multiCamSession
} else {
AVCaptureSession()
return AVCaptureSession()
}
#else
AVCaptureSession()
return AVCaptureSession()
#endif
}

Expand Down

0 comments on commit 478c281

Please sign in to comment.