We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The following code generates the wrong query to filter the included releases. Consequently, the desired data is missing from the response.
WebService::MusicBrainz->new->search( 'artist' => { 'mbid' => '01809552-4f87-45b0-afff-2c6f0730a3be', 'inc' => 'releases', 'type' => 'album', } );
Generated URL: http://musicbrainz.org/ws/2/artist/01809552-4f87-45b0-afff-2c6f0730a3be?fmt=json&inc=releases&query=type:"album"&offset=0 Expected URL: http://musicbrainz.org/ws/2/artist/01809552-4f87-45b0-afff-2c6f0730a3be?fmt=json&inc=releases&type=album&offset=0
The text was updated successfully, but these errors were encountered:
Fix for bfaist#9 and bfaist#10 on official repo
2ccb0e2
No branches or pull requests
The following code generates the wrong query to filter the included releases. Consequently, the desired data is missing from the response.
Generated URL: http://musicbrainz.org/ws/2/artist/01809552-4f87-45b0-afff-2c6f0730a3be?fmt=json&inc=releases&query=type:"album"&offset=0
Expected URL: http://musicbrainz.org/ws/2/artist/01809552-4f87-45b0-afff-2c6f0730a3be?fmt=json&inc=releases&type=album&offset=0
The text was updated successfully, but these errors were encountered: