lightcouch / LightCouch

CouchDB Java API
www.lightcouch.org
Apache License 2.0
67 stars 70 forks source link

Fix url parameter encoding #53

Closed iddo closed 8 years ago

iddo commented 8 years ago

Fixes issue #52

Please note that this fix has one behavior change that I believe should not affect anyone: Previously you could mix usages of org.lightcouch.URIBuilder#query(String name, Object value) and org.lightcouch.URIBuilder#query(String query) (although I highly doubt that ever worked because it seems there was no proper handling of when to add the ampersand "&" character between the inputs of the two methods). After this commit the behavior is that the latter form (org.lightcouch.URIBuilder#query(String query)) takes precedence.

iddo commented 8 years ago

Created a separate branch for this issue