diff --git a/lib/sc/init.go b/lib/sc/init.go index 82570f9..f0eb51c 100644 --- a/lib/sc/init.go +++ b/lib/sc/init.go @@ -416,7 +416,9 @@ func (t Track) FormatDescription() string { } desc += strconv.FormatInt(t.Likes, 10) + " ❤️ | " + strconv.FormatInt(t.Played, 10) + " ▶️" - desc += "\nGenre: " + t.Genre + if t.Genre != "" { + desc += "\nGenre: " + t.Genre + } desc += "\nCreated: " + t.CreatedAt desc += "\nLast modified: " + t.LastModified if len(t.TagList) != 0 {