mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-06 05:57:35 +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
|
@ -43,5 +43,8 @@ func (m *MockArtist) Get(id string) (*domain.Artist, error) {
|
|||
if m.err {
|
||||
return nil, errors.New("Error!")
|
||||
}
|
||||
return m.data[id], nil
|
||||
if d, ok := m.data[id]; ok {
|
||||
return d, nil
|
||||
}
|
||||
return nil, domain.ErrNotFound
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue