Skip to content

Commit

Permalink
fix(FilePicker): Request all default file props (incl. file id)
Browse files Browse the repository at this point in the history
Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
  • Loading branch information
susnux committed Mar 29, 2024
1 parent 14cdae5 commit a55a76a
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 a55a76a

Please sign in to comment.