Output artist and track number in Song.toString()

This commit is contained in:
Nekojimi 2021-10-04 18:55:21 +01:00 committed by AwesomeToaster
parent 3ee4f8fde5
commit 03ffc9d994
1 changed files with 10 additions and 3 deletions

View File

@ -103,10 +103,17 @@ public class Song
@Override @Override
public String toString() public String toString()
{ {
String ret = "";
if (artist != null && !artist.isEmpty())
ret += artist + " - ";
if (title != null && !title.isEmpty()) if (title != null && !title.isEmpty())
return title; ret += title;
else
return "track " + number; if (ret.isEmpty())
ret = "track " + number;
return "[" + number + "] " + ret;
// return url.toExternalForm(); // return url.toExternalForm();
} }
} }