Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Fixed issue nextcloud/notes/#1538
This patch needs also the patch in notes.

Thx for developing patch to @gaudryc

Signed-off-by: Frank Rochlitzer <[email protected]>
  • Loading branch information
theroch authored and mejo- committed Jul 1, 2025
commit a9765dc305039c7a369e9a076185d98ce4dd00e4
4 changes: 2 additions & 2 deletions src/services/WebdavClient.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ export const client = davGetClient()

export const fetchNode = async (node: Node): Promise<Node> => {
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<FileStat>
})) as ResponseDataDetailed<FileStat>
return davResultToNode(result.data)
}
Loading