Hello,
I noticed attachment name containing special character are not being url-encoded.
There is just a string.format(...) : https://github.com/soitgoes/LoveSeat/blob/master/LoveSeat/CouchDatabase.cs#L216
Therefore an attachment name such as 'picture+1' will become 'picture 1' in CouchDB since
request = (HttpWebRequest)WebRequest.Create(uri);
will replace it by space.
Hello,
I noticed attachment name containing special character are not being url-encoded.
There is just a string.format(...) : https://github.com/soitgoes/LoveSeat/blob/master/LoveSeat/CouchDatabase.cs#L216
Therefore an attachment name such as 'picture+1' will become 'picture 1' in CouchDB since
request = (HttpWebRequest)WebRequest.Create(uri);will replace it by space.