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!") - } } } }