We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7fdbb0c commit 478c281Copy full SHA for 478c281
Sources/LiveKit/Track/Capturers/CameraCapturer.swift
@@ -97,12 +97,12 @@ public class CameraCapturer: VideoCapturer {
97
public var captureSession: AVCaptureSession {
98
#if os(iOS)
99
if AVCaptureMultiCamSession.isMultiCamSupported {
100
- Self._multiCamSession
+ return Self._multiCamSession
101
} else {
102
- AVCaptureSession()
+ return AVCaptureSession()
103
}
104
#else
105
106
#endif
107
108
0 commit comments