Better error handling when cover art cannot be loaded

This commit is contained in:
Deluan
2020-01-20 22:30:16 -05:00
parent c6ed0d5377
commit 8a1110044c
2 changed files with 8 additions and 3 deletions
+2 -2
View File
@@ -43,10 +43,10 @@ func (c *MediaRetrievalController) GetCoverArt(w http.ResponseWriter, r *http.Re
switch {
case err == model.ErrNotFound:
log.Error(r, err.Error(), "id", id)
log.Error(r, "Couldn't find coverArt", "id", id, err)
return nil, NewError(responses.ErrorDataNotFound, "Cover not found")
case err != nil:
log.Error(r, err)
log.Error(r, "Error retrieving coverArt", "id", id, err)
return nil, NewError(responses.ErrorGeneric, "Internal Error")
}