From cfa96f4737e4726a78625fe13f2c1a7ae7b21659 Mon Sep 17 00:00:00 2001 From: Greyson Parrelli Date: Tue, 15 Jul 2025 10:07:11 -0400 Subject: [PATCH] Remove internal-only crash during archive status reset. --- .../securesms/jobs/ArchiveAttachmentReconciliationJob.kt | 3 --- 1 file changed, 3 deletions(-) diff --git a/app/src/main/java/org/thoughtcrime/securesms/jobs/ArchiveAttachmentReconciliationJob.kt b/app/src/main/java/org/thoughtcrime/securesms/jobs/ArchiveAttachmentReconciliationJob.kt index 10cf6ac4ce..2e0d1f22fb 100644 --- a/app/src/main/java/org/thoughtcrime/securesms/jobs/ArchiveAttachmentReconciliationJob.kt +++ b/app/src/main/java/org/thoughtcrime/securesms/jobs/ArchiveAttachmentReconciliationJob.kt @@ -135,9 +135,6 @@ class ArchiveAttachmentReconciliationJob private constructor( val success = SignalDatabase.attachments.resetArchiveTransferStateByPlaintextHashAndRemoteKey(entry.plaintextHash, entry.remoteKey) if (!success) { Log.e(TAG, "Failed to reset archive transfer state by remote hash/key!") - if (RemoteConfig.internalUser) { - throw RuntimeException("Failed to reset archive transfer state by remote hash/key!") - } } } }