fix #1129: webdav storage error on Unicode filenames

This commit is contained in:
antelle 2019-08-24 07:47:13 +02:00
parent cbbf5f833a
commit ea00818573
2 changed files with 5 additions and 1 deletions

View File

@ -190,7 +190,10 @@ const StorageWebDav = StorageBase.extend({
method: 'MOVE',
path: tmpPath,
nostat: true,
headers: { Destination: movePath, 'Overwrite': 'T' }
headers: {
Destination: encodeURI(movePath),
'Overwrite': 'T'
}
},
saveOpts
),

View File

@ -3,6 +3,7 @@ Release notes
##### v1.10 (TBD)
`+` config option to disable xml export (canExportXml)
`-` fix #1154: relative Destination header in WebDAV MOVE
`-` fix #1129: webdav storage error on Unicode filenames
##### v1.9.3 (2019-08-25)
`-` fixed group settings not being displayed