Compare commits

...

1 Commits

Author SHA1 Message Date
Connor Johnstone 65c229ee7f removed secondary artists 2026-03-23 17:11:38 -04:00
2 changed files with 0 additions and 8 deletions
-7
View File
@@ -119,13 +119,6 @@ pub async fn tag_track(
),
};
// Upsert secondary collaborator artists so they exist as separate library entries
for (name, mbid) in &details.secondary_artists {
if let Err(e) = queries::artists::upsert(conn, name, Some(mbid)).await {
tracing::warn!(artist = %name, error = %e, "failed to upsert secondary artist");
}
}
// Upsert album from best release
let (album_id, album_name) = if let Some(ref release) = best_release {
let album = queries::albums::upsert(
-1
View File
@@ -53,7 +53,6 @@ impl MetadataProvider for MockProvider {
}],
duration_ms: Some(413_000),
genres: vec!["Progressive Rock".into()],
secondary_artists: vec![],
})
} else {
Err(shanty_data::DataError::Other("not found".into()))