Merge branch 'dev' into duplicate-subscription-fix

This commit is contained in:
Christian Schabesberger
2019-08-18 00:42:24 +02:00
committed by GitHub
4 changed files with 9 additions and 6 deletions

View File

@@ -129,7 +129,7 @@ public class Downloader implements org.schabi.newpipe.extractor.Downloader {
* request See : https://github.com/rg3/youtube-dl/issues/5138
*/
if (con.getResponseCode() == 429) {
throw new ReCaptchaException("reCaptcha Challenge requested");
throw new ReCaptchaException("reCaptcha Challenge requested", con.getURL().toString());
}
throw new IOException(con.getResponseCode() + " " + con.getResponseMessage(), e);