Remove http being added to proxy for flaresolverr

Removes the http prefix that is added to the proxy url when passing a proxy to flaresolverr. Flaresolverr doesn't seem to like the http:// being added and fails to work properly.
pull/2002/head
Dawud 4 months ago committed by GitHub
parent 16baceb784
commit 730b540de9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -209,7 +209,7 @@ namespace NzbDrone.Core.IndexerProxies.FlareSolverr
switch (proxySettings.Type)
{
case ProxyType.Http:
return new Uri("http://" + proxySettings.Host + ":" + proxySettings.Port);
return new Uri(proxySettings.Host + ":" + proxySettings.Port);
case ProxyType.Socks4:
return new Uri("socks4://" + proxySettings.Host + ":" + proxySettings.Port);
case ProxyType.Socks5:

Loading…
Cancel
Save