Closed timosturm closed 2 years ago
E.g., calling client.webDav.ls(widget.directory.path, props: WebDavProps.all); returned WebDavFiles where fileId was not initialized because the xml property was not correct:
client.webDav.ls(widget.directory.path, props: WebDavProps.all);
WebDavFile
fileId
wrong: ocFileId = 'oc:fileId', correct: ocFileId = 'oc:fileid'.
ocFileId = 'oc:fileId'
ocFileId = 'oc:fileid'
See documentation.
PS: Fixes #46
Fixed in https://github.com/jld3103/nextcloud-harbour/tree/main/packages/nextcloud/lib/src/clients/custom/webdav
E.g., calling
client.webDav.ls(widget.directory.path, props: WebDavProps.all);
returnedWebDavFile
s wherefileId
was not initialized because the xml property was not correct:wrong:
ocFileId = 'oc:fileId'
, correct:ocFileId = 'oc:fileid'
.See documentation.
PS: Fixes #46