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