From d9f6f3daa32f4e2ba8d90d4b7fdf0a8033e4ed33 Mon Sep 17 00:00:00 2001 From: =?utf8?q?John=20Molakvo=C3=A6?= Date: Thu, 14 Dec 2023 15:35:52 +0100 Subject: [PATCH] fix(files): fix download file encoded source MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: John Molakvoæ --- apps/files/src/actions/downloadAction.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/files/src/actions/downloadAction.ts b/apps/files/src/actions/downloadAction.ts index 0d8bfb7dfc2..5afec375e99 100644 --- a/apps/files/src/actions/downloadAction.ts +++ b/apps/files/src/actions/downloadAction.ts @@ -84,7 +84,7 @@ export const action = new FileAction({ return null } - triggerDownload(node.source) + triggerDownload(node.encodedSource) return null }, -- 2.39.5