removed orebot/tor support

This commit is contained in:
Christian Schabesberger 2016-07-25 11:59:37 +02:00
parent e6fe1d2008
commit 1fd6685b3b
6 changed files with 10 additions and 82 deletions

View file

@ -41,8 +41,8 @@ public class Downloader implements org.schabi.newpipe.extractor.Downloader {
* @return the contents of the specified text file*/
public String download(String siteUrl, String language) throws IOException {
URL url = new URL(siteUrl);
//HttpsURLConnection con = (HttpsURLConnection) url.openConnection();
HttpsURLConnection con = NetCipher.getHttpsURLConnection(url);
HttpsURLConnection con = (HttpsURLConnection) url.openConnection();
//HttpsURLConnection con = NetCipher.getHttpsURLConnection(url);
con.setRequestProperty("Accept-Language", language);
return dl(con);
}

View file

@ -1,5 +1,7 @@
package org.schabi.newpipe.extractor.services.youtube;
import android.util.Log;
import org.jsoup.Jsoup;
import org.jsoup.nodes.Document;
import org.jsoup.nodes.Element;