Do not empty old artist metadata (#2423)

This commit is contained in:
Kendall Garner
2023-11-17 00:20:37 +00:00
committed by GitHub
parent 7a858a2db3
commit 79870b1090
4 changed files with 6 additions and 5 deletions
+1 -1
View File
@@ -50,7 +50,7 @@ func (m *MockArtistRepo) Get(id string) (*model.Artist, error) {
return nil, model.ErrNotFound
}
func (m *MockArtistRepo) Put(ar *model.Artist) error {
func (m *MockArtistRepo) Put(ar *model.Artist, columsToUpdate ...string) error {
if m.err {
return errors.New("error")
}