From 2d3a6d983a9a6fceeacc384360a92470d1f1d527 Mon Sep 17 00:00:00 2001 From: Frank Rochlitzer Date: Wed, 25 Jun 2025 19:16:37 +0000 Subject: [PATCH] Fixed issue nextcloud/notes/#1538 This patch needs also the patch in notes. Thx for developing patch to @gaudryc Signed-off-by: Frank Rochlitzer --- src/services/WebdavClient.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/services/WebdavClient.ts b/src/services/WebdavClient.ts index e03f1adc064..d4fce9f0a49 100644 --- a/src/services/WebdavClient.ts +++ b/src/services/WebdavClient.ts @@ -15,7 +15,7 @@ export const client = davGetClient() export const fetchNode = async (node: Node): Promise => { const propfindPayload = davGetDefaultPropfind() - const result = (await client.stat(`${davRootPath}${node.path}`, { + const result = (await client.stat(`${node.root}${node.path}`, { details: true, data: propfindPayload, })) as ResponseDataDetailed