From: John Molakvoæ Date: Thu, 14 Dec 2023 14:35:52 +0000 (+0100) Subject: fix(files): fix download file encoded source X-Git-Tag: v29.0.0beta1~639^2~1 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=d9f6f3daa32f4e2ba8d90d4b7fdf0a8033e4ed33;p=nextcloud-server.git fix(files): fix download file encoded source Signed-off-by: John Molakvoæ --- 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 },