From c2e161780d69811d981c83bb49e20072788d165c Mon Sep 17 00:00:00 2001 From: Greyson Parrelli Date: Wed, 12 Aug 2026 13:28:35 -0400 Subject: [PATCH] Improve reconcilliation precondition. --- .../securesms/jobs/ArchiveAttachmentReconciliationJob.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 d19ac9c597..3780423e32 100644 --- a/app/src/main/java/org/thoughtcrime/securesms/jobs/ArchiveAttachmentReconciliationJob.kt +++ b/app/src/main/java/org/thoughtcrime/securesms/jobs/ArchiveAttachmentReconciliationJob.kt @@ -143,7 +143,7 @@ class ArchiveAttachmentReconciliationJob private constructor( return Result.success() } - if (!AppDependencies.jobManager.areQueuesEmpty(UploadAttachmentToArchiveJob.QUEUES)) { + if (!AppDependencies.jobManager.areQueuesEmpty(UploadAttachmentToArchiveJob.QUEUES + ArchiveThumbnailUploadJob.QUEUES)) { Log.i(TAG, "There are still uploads in progress. Retrying later.") return Result.retry(defaultBackoff()) }