Skip to content

Commit 1f1fef1

Browse files
committed
Fix wrong order of reqwest parameters.
1 parent f06ea8f commit 1f1fef1

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)