Ensure custom exposure mode is supported

This commit is contained in:
Ivan Malison 2024-10-09 17:59:22 -06:00
parent f8efa172ba
commit 9e05ea15c1

View File

@ -200,6 +200,11 @@ extension CameraSession {
return
}
guard captureDevice.isExposureModeSupported(.custom) else {
ReactLogger.log(level: .info, message: "Custom exposure mode not supported")
return
}
do {
// Lock the device for configuration
try captureDevice.lockForConfiguration()