We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ae97f30 commit e02af4dCopy full SHA for e02af4d
src/lib/adapters/WebDav.ts
@@ -465,7 +465,8 @@ export default class WebDavAdapter extends CachingAdapter {
465
res = await fetch(url,{
466
method: 'PROPFIND',
467
headers: {
468
- Authorization: 'Basic ' + authString
+ Authorization: 'Basic ' + authString,
469
+ Depth: '0',
470
},
471
cache: 'no-store',
472
credentials: 'omit',
@@ -505,6 +506,7 @@ export default class WebDavAdapter extends CachingAdapter {
505
506
507
508
Authorization: 'Basic ' + authString,
509
510
Pragma: 'no-cache',
511
'Cache-Control': 'no-cache'
512
0 commit comments