From 68b339d01defb113a5acbfc199627d08c3b387ab Mon Sep 17 00:00:00 2001 From: Ferdinand Thiessen Date: Mon, 15 Dec 2025 16:21:29 +0100 Subject: [PATCH 1/2] fix(files): ensure creating folders in public shares work The root of the webdav client needs to be the public share root, as accessing the `/files` folder is not possible for public shares. Signed-off-by: Ferdinand Thiessen --- apps/files/src/services/DropService.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/files/src/services/DropService.ts b/apps/files/src/services/DropService.ts index 1fec09ae4158d..c1d8e6af9af98 100644 --- a/apps/files/src/services/DropService.ts +++ b/apps/files/src/services/DropService.ts @@ -131,7 +131,7 @@ export async function onDropExternalFiles(root: RootDirectory, destination: Fold await uploadDirectoryContents(file, relativePath) } catch (error) { showError(t('files', 'Unable to create the directory {directory}', { directory: file.name })) - logger.error('', { error, absolutePath, directory: file }) + logger.error('Unable to create the directory', { error, relativePath, directory: file }) } continue } From d23d7650fd82ac3ec518f5bfb8725eb19779de9d Mon Sep 17 00:00:00 2001 From: nextcloud-command Date: Mon, 12 Jan 2026 20:07:13 +0000 Subject: [PATCH 2/2] chore(assets): Recompile assets Signed-off-by: nextcloud-command