fix(lock): extra checks for fingerprint

This commit is contained in:
0blivi0nis
2025-11-03 17:04:39 -08:00
parent 534ef6fd7c
commit f2055d128e
@@ -38,6 +38,7 @@ Scope {
root.resetTargetAction(); root.resetTargetAction();
root.clearText(); root.clearText();
root.unlockInProgress = false; root.unlockInProgress = false;
stopFingerPam();
} }
Timer { Timer {
@@ -69,7 +70,9 @@ Scope {
} }
function stopFingerPam() { function stopFingerPam() {
fingerPam.abort(); if (fingerPam.running) {
fingerPam.abort();
}
} }
Process { Process {