Print user's proper name, not ID.

This commit is contained in:
Nekojimi 2021-09-29 20:08:59 +01:00
parent 3695e4bb13
commit 603b7e2cd8
1 changed files with 1 additions and 1 deletions

View File

@ -185,7 +185,7 @@ public class Main extends ListenerAdapter
try
{
Song song = new Song(new URL(arg));
song.setRequestedBy(event.getAuthor().getId());
song.setRequestedBy(event.getAuthor().getName());
song.setRequestedIn(event.getChannel().getId());
// event.getChannel().sendMessage("Downloading ...").queue();
downloader.accept(song);