mirror of
https://github.com/RGBCube/serenity
synced 2025-05-22 19:45:08 +00:00
pro: Only attempt to parse a proxy url if it is provided
Otherwise we'd end up trying to parse an empty string as a proxy url which is certainly not one.
This commit is contained in:
parent
a42e03b01a
commit
b16918ccb9
1 changed files with 3 additions and 1 deletions
|
@ -191,7 +191,9 @@ ErrorOr<int> serenity_main(Main::Arguments arguments)
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
Core::ProxyData proxy_data = TRY(Core::ProxyData::parse_url(proxy_spec));
|
Core::ProxyData proxy_data {};
|
||||||
|
if (!proxy_spec.is_empty())
|
||||||
|
proxy_data = TRY(Core::ProxyData::parse_url(proxy_spec));
|
||||||
|
|
||||||
Core::EventLoop loop;
|
Core::EventLoop loop;
|
||||||
bool received_actual_headers = false;
|
bool received_actual_headers = false;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue