diff options
author | John Molakvoæ <skjnldsv@protonmail.com> | 2023-12-14 15:35:52 +0100 |
---|---|---|
committer | nextcloud-command <nextcloud-command@users.noreply.github.com> | 2023-12-15 12:34:19 +0000 |
commit | fe631fad083e1d8ec79f67ab551c49c716ad2882 (patch) | |
tree | e4dab0614ed7fd9b97905f9dbcc38da48450aa46 /apps | |
parent | 49bff0fbe77971cb2c3d4eb2276156b4ac339c7b (diff) | |
download | nextcloud-server-fe631fad083e1d8ec79f67ab551c49c716ad2882.tar.gz nextcloud-server-fe631fad083e1d8ec79f67ab551c49c716ad2882.zip |
fix(files): fix download file encoded source
Signed-off-by: John Molakvoæ <skjnldsv@protonmail.com>
Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
Diffstat (limited to 'apps')
-rw-r--r-- | apps/files/src/actions/downloadAction.ts | 2 |
1 files changed, 1 insertions, 1 deletions
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 }, |