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
If mpd is playing a song and the server can't find the cover /api/cover will returns the following json
{ "status": "success", "large": null, "medium": null, "mega": null, "extralarge": null, "small": null }
Something like that should be better
{ "status" : "fail", "error" : "Can't find the cover", "cover" : null }
The text was updated successfully, but these errors were encountered:
What if you only have a small size, what if the request between the flask server and last fm failed ?
Sorry, something went wrong.
If not all size are found
{ "status": "success", "error": null, "cover": { "large": "http//foo.bar.tld/album-picture.jpg", "medium": null, "mega": null, "extralarge": null, "small": null } }
If the request between flask and lastfm failed
{ "status" : "fail", "error" : "Can't fetch information from lastfm", "cover" : null }
gcmalloc
No branches or pull requests
If mpd is playing a song and the server can't find the cover /api/cover will returns the following json
Something like that should be better
The text was updated successfully, but these errors were encountered: