mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 21:17:37 +03:00
Use new rest
lib (Update receives all columns that need to be updated)
This commit is contained in:
parent
b2acec0a09
commit
778f474d26
14 changed files with 46 additions and 26 deletions
|
@ -77,9 +77,10 @@ func (r *transcodingRepository) Save(entity interface{}) (string, error) {
|
|||
return id, err
|
||||
}
|
||||
|
||||
func (r *transcodingRepository) Update(entity interface{}, cols ...string) error {
|
||||
func (r *transcodingRepository) Update(id string, entity interface{}, cols ...string) error {
|
||||
t := entity.(*model.Transcoding)
|
||||
_, err := r.put(t.ID, t)
|
||||
t.ID = id
|
||||
_, err := r.put(id, t)
|
||||
if err == model.ErrNotFound {
|
||||
return rest.ErrNotFound
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue