We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f70b55d commit 062acccCopy full SHA for 062accc
src/UniGetUI.PackageEngine.Managers.WinGet/WinGet.cs
@@ -100,7 +100,7 @@ public static string GetProxyArgument()
100
Logger.Warn("Proxy is enabled, but WinGet does not support proxy authentication, so the proxy setting will be ignored");
101
return "";
102
}
103
- return $"--proxy {proxyUri.ToString()[..^1]}";
+ return $"--proxy {proxyUri.ToString().TrimEnd('/')}";
104
105
106
protected override IReadOnlyList<Package> FindPackages_UnSafe(string query)
0 commit comments