mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 21:17:37 +03:00
Get() methods from all repositories now return a ErrNotFound when the id is nonexistent
This commit is contained in:
parent
db34122faf
commit
c90a50827a
11 changed files with 70 additions and 42 deletions
|
@ -21,14 +21,13 @@ func (c *StreamController) Prepare() {
|
|||
c.id = c.RequiredParamString("id", "id parameter required")
|
||||
|
||||
mf, err := c.repo.Get(c.id)
|
||||
if err != nil {
|
||||
beego.Error("Error reading mediafile", c.id, "from the database", ":", err)
|
||||
c.SendError(responses.ERROR_GENERIC, "Internal error")
|
||||
}
|
||||
|
||||
if mf == nil {
|
||||
switch {
|
||||
case err == domain.ErrNotFound:
|
||||
beego.Error("MediaFile", c.id, "not found!")
|
||||
c.SendError(responses.ERROR_DATA_NOT_FOUND)
|
||||
case err != nil:
|
||||
beego.Error("Error reading mediafile", c.id, "from the database", ":", err)
|
||||
c.SendError(responses.ERROR_GENERIC, "Internal error")
|
||||
}
|
||||
|
||||
c.mf = mf
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue