Add multiple genres to Artists

This commit is contained in:
Deluan 2021-07-16 18:18:22 -04:00 committed by Deluan Quintão
parent 1d8607ef6a
commit b56e034ce3
6 changed files with 76 additions and 22 deletions

View file

@ -89,3 +89,17 @@ func getMostFrequentMbzID(ctx context.Context, mbzIDs, entityName, name string)
}
return topId
}
func getGenres(genreIds string) model.Genres {
ids := strings.Fields(genreIds)
var genres model.Genres
unique := map[string]struct{}{}
for _, id := range ids {
if _, ok := unique[id]; ok {
continue
}
genres = append(genres, model.Genre{ID: id})
unique[id] = struct{}{}
}
return genres
}