From 9be0874e93af489fdd3c937bd9cc268ebf2f09ce Mon Sep 17 00:00:00 2001 From: Enginex0 Date: Sun, 22 Mar 2026 00:54:33 +0100 Subject: [PATCH] fix(operation): fix missed finalized rename in abort() --- .../interception/keystore/shim/SoftwareOperation.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/main/java/org/matrix/TEESimulator/interception/keystore/shim/SoftwareOperation.kt b/app/src/main/java/org/matrix/TEESimulator/interception/keystore/shim/SoftwareOperation.kt index 1eb4275..c72ce28 100644 --- a/app/src/main/java/org/matrix/TEESimulator/interception/keystore/shim/SoftwareOperation.kt +++ b/app/src/main/java/org/matrix/TEESimulator/interception/keystore/shim/SoftwareOperation.kt @@ -364,7 +364,7 @@ class SoftwareOperation( fun abort() { checkActive() - finalized = true + isFinalized = true primitive.abort() SystemLogger.debug("[SoftwareOp TX_ID: $txId] Operation aborted.") }