fix(lock): extra checks for fingerprint (#2370)

This commit is contained in:
end-4
2025-11-04 15:06:25 +01:00
committed by GitHub
@@ -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 {