- Thread starter
- #41
With all requests, the necessary characters are converted (URL Encoding) through the system function.
You're right, actually the URL is converted. But in case of the & character it fails. Example:
http://musicbrainz.org/ws/2/artist/?query="Blank & Jones"
Resolved to (wrong): http://musicbrainz.org/ws/2/artist/?query="Blank & Jones"
Result:
http://musicbrainz.org/ws/2/artist/?query="Blank %26 Jones"
Resolved to (correct): http://musicbrainz.org/ws/2/artist/?query="Blank & Jones"
I can remove artist: from artist search, all other already in FH ...
I really would like to give it a try and do a beta test. If it doesn't work we can revert this change.