Skip to content

Commit 2f1f029

Browse files
authored
Merge pull request #759 from TeamPiped/reqwest-params
Fix wrong order of reqwest parameters.
2 parents f06ea8f + 1f1fef1 commit 2f1f029

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/me/kavin/piped/Main.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ public static void main(String[] args) throws Exception {
4242
Security.setProperty("crypto.policy", "unlimited");
4343
Security.addProvider(new BouncyCastleProvider());
4444

45-
ReqwestUtils.init(REQWEST_PROXY_USER, REQWEST_PROXY, REQWEST_PROXY_PASS);
45+
ReqwestUtils.init(REQWEST_PROXY, REQWEST_PROXY_USER, REQWEST_PROXY_PASS);
4646

4747
NewPipe.init(new DownloaderImpl(), new Localization("en", "US"), ContentCountry.DEFAULT, Multithreading.getCachedExecutor());
4848
YoutubeStreamExtractor.forceFetchAndroidClient(true);

0 commit comments

Comments
 (0)