Skip to content

Commit

Permalink
Merge pull request #1287 from nextcloud-libraries/fix/propfind-missin…
Browse files Browse the repository at this point in the history
…g-file-id

fix(FilePicker): Request all default file props (incl. file id)
  • Loading branch information
Pytal committed Apr 1, 2024
2 parents 9090fdd + a55a76a commit a19a863
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions lib/composables/dav.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ import { computed, onMounted, ref, watch } from 'vue'
*
* @param currentView Reference to the current files view
* @param currentPath Reference to the current files path
* @param isPublicEndpoint True if the public `public.php` WebDAV endpoint should be used instead of `remote.php`
*/
export const useDAVFiles = function(
currentView: Ref<'files'|'recent'|'favorites'> | ComputedRef<'files'|'recent'|'favorites'>,
Expand Down Expand Up @@ -102,6 +103,7 @@ export const useDAVFiles = function(

const { data } = await client.value.stat(`${rootPath}${path}`, {
details: true,
data: davGetDefaultPropfind(),
}) as ResponseDataDetailed<FileStat>
return resultToNode(data)
}
Expand Down

0 comments on commit a19a863

Please sign in to comment.