mikedeboer / jsDAV

jsDAV allows you to easily add WebDAV support to a NodeJS application. jsDAV is meant to cover the entire standard, and attempts to allow integration using an easy to understand API.
http://www.mikedeboer.nl
MIT License
681 stars 159 forks source link

Fix for enabling spaces in filenames #157

Open suprraz opened 7 years ago

suprraz commented 7 years ago

Filenames were being double encoded, i.e. "foo%2520bar" instead of "foo%20bar". Solution removes encodeURI() on line 314 and leaves line 373 to do the encoding.

Resolves https://github.com/mikedeboer/jsDAV/issues/155

matthiasg commented 6 years ago

why is this not merged in ? @mikedeboer any specific reason ?