Skip to content

Commit

Permalink
fix excess comma in artist in queue tracks
Browse files Browse the repository at this point in the history
  • Loading branch information
zznty committed Nov 28, 2023
1 parent 63ddec1 commit 047ea11
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions MusicX/Services/Player/Playlists/TrackExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ public static string GetArtistsString(this PlaylistTrack track)

if (track.FeaturedArtists?.Any() == true)
{
builder.Remove(builder.Length - 2, 2);

builder.Append("feat. ");
foreach (var (name, _) in track.FeaturedArtists)
{
Expand Down

0 comments on commit 047ea11

Please sign in to comment.