mirror of
https://github.com/TeamPiped/Piped-Backend.git
synced 2024-08-14 23:51:41 +00:00
Fix wrong order of reqwest parameters.
This commit is contained in:
parent
f06ea8f93f
commit
1f1fef1644
1 changed files with 1 additions and 1 deletions
|
@ -42,7 +42,7 @@ public class Main {
|
|||
Security.setProperty("crypto.policy", "unlimited");
|
||||
Security.addProvider(new BouncyCastleProvider());
|
||||
|
||||
ReqwestUtils.init(REQWEST_PROXY_USER, REQWEST_PROXY, REQWEST_PROXY_PASS);
|
||||
ReqwestUtils.init(REQWEST_PROXY, REQWEST_PROXY_USER, REQWEST_PROXY_PASS);
|
||||
|
||||
NewPipe.init(new DownloaderImpl(), new Localization("en", "US"), ContentCountry.DEFAULT, Multithreading.getCachedExecutor());
|
||||
YoutubeStreamExtractor.forceFetchAndroidClient(true);
|
||||
|
|
Loading…
Reference in a new issue