Use Gravatar in GetAvatar Subsonic API

This commit is contained in:
Deluan 2020-11-13 14:57:49 -05:00
parent a4ef31251d
commit b64bb706f7
4 changed files with 35 additions and 5 deletions

View file

@ -171,7 +171,11 @@ func h(r chi.Router, path string, f handler) {
if err != nil {
// If it is not a Subsonic error, convert it to an ErrorGeneric
if _, ok := err.(subError); !ok {
err = newError(responses.ErrorGeneric, "Internal Error")
if err == model.ErrNotFound {
err = newError(responses.ErrorDataNotFound, "data not found")
} else {
err = newError(responses.ErrorGeneric, "Internal Error")
}
}
sendError(w, r, err)
return