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