diff --git a/ts/jobs/AttachmentDownloadManager.ts b/ts/jobs/AttachmentDownloadManager.ts index 57bca7981a..3ecc465d13 100644 --- a/ts/jobs/AttachmentDownloadManager.ts +++ b/ts/jobs/AttachmentDownloadManager.ts @@ -834,6 +834,9 @@ export async function runDownloadAttachmentJobInner({ ); return { downloadedVariant: AttachmentVariant.Default }; } catch (error) { + if (isIncrementalMacVerificationError(error)) { + throw error; + } if (mightHaveBackupThumbnailToDownload && !attemptBackupThumbnailFirst) { log.error( `${logId}: failed to download fullsize attachment, falling back to backup thumbnail`,