From e4d100b4a52935b9fa6e3a1e3efcdb124a28fe1d Mon Sep 17 00:00:00 2001 From: trevor-signal <131492920+trevor-signal@users.noreply.github.com> Date: Mon, 3 Mar 2025 19:31:53 -0500 Subject: [PATCH] Fix path for resumable downloads --- ts/textsecure/downloadAttachment.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ts/textsecure/downloadAttachment.ts b/ts/textsecure/downloadAttachment.ts index cf97031512..7c9f1fc3a9 100644 --- a/ts/textsecure/downloadAttachment.ts +++ b/ts/textsecure/downloadAttachment.ts @@ -127,7 +127,7 @@ export async function downloadAttachment( let { downloadPath } = attachment; const absoluteDownloadPath = downloadPath - ? window.Signal.Migrations.getAbsoluteAttachmentPath(downloadPath) + ? window.Signal.Migrations.getAbsoluteDownloadsPath(downloadPath) : undefined; let downloadOffset = 0;