From f2055d128eb3342dd1e361a2895bae4de58bd498 Mon Sep 17 00:00:00 2001 From: 0blivi0nis <182329535+0blivi0nis@users.noreply.github.com> Date: Mon, 3 Nov 2025 17:04:39 -0800 Subject: [PATCH] fix(lock): extra checks for fingerprint --- dots/.config/quickshell/ii/modules/lock/LockContext.qml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/dots/.config/quickshell/ii/modules/lock/LockContext.qml b/dots/.config/quickshell/ii/modules/lock/LockContext.qml index b3b7fece2..17893bb18 100644 --- a/dots/.config/quickshell/ii/modules/lock/LockContext.qml +++ b/dots/.config/quickshell/ii/modules/lock/LockContext.qml @@ -38,6 +38,7 @@ Scope { root.resetTargetAction(); root.clearText(); root.unlockInProgress = false; + stopFingerPam(); } Timer { @@ -69,7 +70,9 @@ Scope { } function stopFingerPam() { - fingerPam.abort(); + if (fingerPam.running) { + fingerPam.abort(); + } } Process {