fixed up the featured artist thing

This commit is contained in:
Connor Johnstone
2026-03-24 11:38:07 -04:00
parent b39dd6cc8e
commit cc0978db94
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, secondary_types: rg.secondary_types,
first_release_date: rg.first_release_date, first_release_date: rg.first_release_date,
first_release_id: rg.first_release_mbid, first_release_id: rg.first_release_mbid,
featured: rg.featured,
}) })
.collect()) .collect())
} }
+2
View File
@@ -100,4 +100,6 @@ pub struct ReleaseGroupResult {
pub secondary_types: Vec<String>, pub secondary_types: Vec<String>,
pub first_release_date: Option<String>, pub first_release_date: Option<String>,
pub first_release_id: Option<String>, pub first_release_id: Option<String>,
/// True if the queried artist is not the primary credit.
pub featured: bool,
} }