Set content type for propfind request

Without the request is sent as application/x-www-form-urlencoded; charset=UTF-8 and might be blocked by some application firewalls because content and content type do not match.

Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
This commit is contained in:
Daniel Kesselberg 2020-02-21 22:13:49 +01:00
parent daf1d74af9
commit bfc956fc88
No known key found for this signature in database
GPG Key ID: 36E3664E099D0614
1 changed files with 1 additions and 0 deletions

View File

@ -40,6 +40,7 @@
'<d:propfind xmlns:d="DAV:">' +
'<d:prop><d:resourcetype/></d:prop>' +
'</d:propfind>',
contentType: 'application/xml; charset=utf-8',
complete: afterCall,
allowAuthErrors: true
});