RequestServer: Remove serenity_resource_root argument from main

We don't need it now that we're not trying to load the cacert.pem file.
Clean up includes while we're here.
This commit is contained in:
Andrew Kaster 2025-07-06 10:10:24 -06:00 committed by Jelle Raaijmakers
commit 1a6b4aaa49
Notes: github-actions[bot] 2025-07-07 07:11:26 +00:00
2 changed files with 4 additions and 13 deletions

View file

@ -203,11 +203,6 @@ ErrorOr<NonnullRefPtr<Requests::RequestClient>> launch_request_server_process()
{
Vector<ByteString> arguments;
if (!s_ladybird_resource_root.is_empty()) {
arguments.append("--serenity-resource-root"sv);
arguments.append(s_ladybird_resource_root);
}
for (auto const& certificate : WebView::Application::browser_options().certificates)
arguments.append(ByteString::formatted("--certificate={}", certificate));