Compare commits

...

1 Commits

Author SHA1 Message Date
Connor Johnstone cc0978db94 fixed up the featured artist thing 2026-03-24 11:38:07 -04:00
2 changed files with 3 additions and 0 deletions
+1
View File
@@ -139,6 +139,7 @@ impl SearchProvider for MusicBrainzSearch {
secondary_types: rg.secondary_types,
first_release_date: rg.first_release_date,
first_release_id: rg.first_release_mbid,
featured: rg.featured,
})
.collect())
}
+2
View File
@@ -100,4 +100,6 @@ pub struct ReleaseGroupResult {
pub secondary_types: Vec<String>,
pub first_release_date: Option<String>,
pub first_release_id: Option<String>,
/// True if the queried artist is not the primary credit.
pub featured: bool,
}