fix: Fix Session has been closed; further changes are illegal error by using tryStopRepeating() (#2568)

* feat: Allow focus calls to be cancelable

* Cancelable

* fix: Use `tryStopRepeating`
This commit is contained in:
Marc Rousavy
2024-02-15 17:34:55 +01:00
committed by GitHub
parent 4168d8f752
commit 129e21f14e
2 changed files with 11 additions and 1 deletions

View File

@@ -0,0 +1,9 @@
package com.mrousavy.camera.extensions
import android.hardware.camera2.CameraCaptureSession
fun CameraCaptureSession.tryStopRepeating() {
try {
stopRepeating()
} catch (_: Throwable) {}
}