From cc0978db9432aea0b17956a8294798ca128f3651 Mon Sep 17 00:00:00 2001 From: Connor Johnstone Date: Tue, 24 Mar 2026 11:38:07 -0400 Subject: [PATCH] fixed up the featured artist thing --- src/musicbrainz.rs | 1 + src/provider.rs | 2 ++ 2 files changed, 3 insertions(+) diff --git a/src/musicbrainz.rs b/src/musicbrainz.rs index 3198906..2f7a123 100644 --- a/src/musicbrainz.rs +++ b/src/musicbrainz.rs @@ -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()) } diff --git a/src/provider.rs b/src/provider.rs index 08f9f9f..ef644b4 100644 --- a/src/provider.rs +++ b/src/provider.rs @@ -100,4 +100,6 @@ pub struct ReleaseGroupResult { pub secondary_types: Vec, pub first_release_date: Option, pub first_release_id: Option, + /// True if the queried artist is not the primary credit. + pub featured: bool, }