Merge pull request #1032 from yo-louk/queue-links

Queue links
This commit is contained in:
John Grosh
2021-11-13 14:14:21 -05:00
committed by GitHub

View File

@@ -53,6 +53,6 @@ public class QueuedTrack implements Queueable
@Override @Override
public String toString() 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() + ">";
} }
} }