mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 13:07:36 +03:00
Use Gravatar in GetAvatar Subsonic API
This commit is contained in:
parent
a4ef31251d
commit
b64bb706f7
4 changed files with 35 additions and 5 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue