From e53eb86a326475487eec2dd831307b6fe71f57ae Mon Sep 17 00:00:00 2001 From: Aaron Liu Date: Tue, 2 Sep 2025 13:01:13 +0800 Subject: [PATCH] fix(explorer): save as shortcut does not work for shared folders in community edition (cloudreve/cloudreve#2818) --- src/redux/thunks/file.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/redux/thunks/file.ts b/src/redux/thunks/file.ts index 7930f31..bc753ea 100644 --- a/src/redux/thunks/file.ts +++ b/src/redux/thunks/file.ts @@ -872,7 +872,7 @@ export function createShareShortcut(index: number): AppThunk { const base = fm?.path_root; const isSingleFile = fm?.list?.single_file_view; const files = fm?.list?.files; - if (!base || !isSingleFile || !files || files.length != 1) { + if (!base || !files) { return; }