You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If a provided URL is http rather than https, this bit of code will accidentally set the outgoing port to 443 without checking the scheme if force_connect is enabled
if uri.scheme() == Some(&httpur::i::Scheme::HTTPS) || p.force_connect{let host = host.to_owned();let port = uri.port_u16().unwrap_or(443);
The text was updated successfully, but these errors were encountered:
If a provided URL is
http
rather thanhttps
, this bit of code will accidentally set the outgoing port to 443 without checking the scheme ifforce_connect
is enabledThe text was updated successfully, but these errors were encountered: