Skip to content

Commit

Permalink
Don't show album if it matches the name of the song (single)
Browse files Browse the repository at this point in the history
  • Loading branch information
landenpls authored Aug 23, 2021
1 parent dcaccf8 commit a8c3056
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ static void Main(string[] args)
isFavorite = extraData["isFavorite"];
};
var albumFormatted = "";
if (nowplaying["album"] != "")
if (nowplaying["album"] != "" && nowplaying["album"] != nowplaying["name"])
{
albumFormatted = " - " + nowplaying["album"];
};
Expand Down

0 comments on commit a8c3056

Please sign in to comment.