diff --git a/src/NadekoBot/Services/Impl/Ytdl.cs b/src/NadekoBot/Services/Impl/Ytdl.cs index 5fce2bba..c2c102d8 100644 --- a/src/NadekoBot/Services/Impl/Ytdl.cs +++ b/src/NadekoBot/Services/Impl/Ytdl.cs @@ -21,7 +21,7 @@ namespace NadekoBot.Services.Impl StartInfo = new ProcessStartInfo() { FileName = "youtube-dl", - Arguments = $"-f bestaudio -e --get-url --get-id --get-thumbnail --get-duration \"ytsearch:{url}\"", + Arguments = $"-f bestaudio -e --get-url --get-id --get-thumbnail --get-duration --no-check-certificate \"ytsearch:{url}\"", UseShellExecute = false, RedirectStandardError = true, RedirectStandardOutput = true,