changed QueuedTrack class instead

This commit is contained in:
yo-louk
2021-11-12 00:55:16 +01:00
parent e942f3ef21
commit 8c92a7a75a
2 changed files with 2 additions and 2 deletions

View File

@@ -53,6 +53,6 @@ public class QueuedTrack implements Queueable
@Override
public String toString()
{
return "`[" + FormatUtil.formatTime(track.getDuration()) + "]` **" + track.getInfo().title + "** - <@" + track.getUserData(RequestMetadata.class).getOwner() + ">";
return "`[" + FormatUtil.formatTime(track.getDuration()) + "]` [**" + track.getInfo().title + "**]("+track.getInfo().uri+") - <@" + track.getUserData(RequestMetadata.class).getOwner() + ">";
}
}