Instead of let usSong: Song = try await MCatalog.equivalent(id: “1642657180”, targetStorefront: “us”) we should use let usSongs: MusicItemCollection<Song> = try await MCatalog.equivalent(id: “1642657180”, targetStorefront: “us”) because of the decode format.
And I've also attached Music Mate to the list as your excellent project is in use in our app.
Instead of
let usSong: Song = try await MCatalog.equivalent(id: “1642657180”, targetStorefront: “us”)
we should uselet usSongs: MusicItemCollection<Song> = try await MCatalog.equivalent(id: “1642657180”, targetStorefront: “us”)
because of the decode format.And I've also attached Music Mate to the list as your excellent project is in use in our app.
Thanks!