From 3439861f7435205ebe8bd34dd180999a32acccd5 Mon Sep 17 00:00:00 2001 From: Greyson Parrelli Date: Fri, 8 Dec 2023 10:21:12 -0500 Subject: [PATCH] Stop writes to the deprecated SVR2 enclave. --- .../main/java/org/thoughtcrime/securesms/pin/SvrRepository.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/main/java/org/thoughtcrime/securesms/pin/SvrRepository.kt b/app/src/main/java/org/thoughtcrime/securesms/pin/SvrRepository.kt index 79add465bb..51d2d6e0b6 100644 --- a/app/src/main/java/org/thoughtcrime/securesms/pin/SvrRepository.kt +++ b/app/src/main/java/org/thoughtcrime/securesms/pin/SvrRepository.kt @@ -46,7 +46,7 @@ object SvrRepository { private val readImplementations: List = listOf(svr2, svr2Deprecated) /** An ordered list of SVR implementations to write to. They should be in priority order, with the most important one listed first. */ - private val writeImplementations: List = listOf(svr2, svr2Deprecated) + private val writeImplementations: List = listOf(svr2) /** * A lock that ensures that only one thread at a time is altering the various pieces of SVR state.