mirror of
https://github.com/JustArchiNET/ArchiSteamFarm.git
synced 2025-12-16 06:20:34 +00:00
Misc
This commit is contained in:
@@ -177,10 +177,7 @@ public sealed class BotConfig {
|
||||
return null;
|
||||
}
|
||||
|
||||
WebProxy proxy = new() {
|
||||
Address = uri,
|
||||
BypassProxyOnLocal = true
|
||||
};
|
||||
WebProxy proxy = new(uri, true);
|
||||
|
||||
if (!string.IsNullOrEmpty(WebProxyUsername) || !string.IsNullOrEmpty(WebProxyPassword)) {
|
||||
NetworkCredential credentials = new();
|
||||
|
||||
@@ -172,10 +172,7 @@ public sealed class GlobalConfig {
|
||||
return null;
|
||||
}
|
||||
|
||||
WebProxy proxy = new() {
|
||||
Address = uri,
|
||||
BypassProxyOnLocal = true
|
||||
};
|
||||
WebProxy proxy = new(uri, true);
|
||||
|
||||
if (!string.IsNullOrEmpty(WebProxyUsername) || !string.IsNullOrEmpty(WebProxyPassword)) {
|
||||
NetworkCredential credentials = new();
|
||||
|
||||
Reference in New Issue
Block a user