diff --git a/NadekoBot/Modules/Music.cs b/NadekoBot/Modules/Music.cs index 83e35904..344bb358 100644 --- a/NadekoBot/Modules/Music.cs +++ b/NadekoBot/Modules/Music.cs @@ -94,7 +94,8 @@ namespace NadekoBot.Modules { if (video?.Uri != "" && video.Uri != null) { SongQueue.Add(video); - await e.Send("**Queued** " + video.FullName); + + await e.Send("**Queued** " + video.FullName+ video.Stream().Length); } }); @@ -107,7 +108,7 @@ namespace NadekoBot.Modules { var video = youtube.GetAllVideos(Searches.FindYoutubeUrlByKeywords(e.Args[0])) .Where(v => v.AdaptiveKind == AdaptiveKind.Audio) .OrderByDescending(v => v.AudioBitrate).FirstOrDefault(); - + if (video?.Uri != "" && video.Uri != null) { SongQueue.Add(video); await e.Send("**Queued** " + video.FullName); diff --git a/dlls/Discord.Net.Audio.dll b/dlls/Discord.Net.Audio.dll index d12b361b..fc74550f 100644 Binary files a/dlls/Discord.Net.Audio.dll and b/dlls/Discord.Net.Audio.dll differ diff --git a/dlls/Discord.Net.Commands.dll b/dlls/Discord.Net.Commands.dll index f03f05ed..67b60447 100644 Binary files a/dlls/Discord.Net.Commands.dll and b/dlls/Discord.Net.Commands.dll differ diff --git a/dlls/Discord.Net.Modules.dll b/dlls/Discord.Net.Modules.dll index 072edecc..04486065 100644 Binary files a/dlls/Discord.Net.Modules.dll and b/dlls/Discord.Net.Modules.dll differ diff --git a/dlls/Discord.Net.dll b/dlls/Discord.Net.dll index e9c1a81b..4c4f5723 100644 Binary files a/dlls/Discord.Net.dll and b/dlls/Discord.Net.dll differ