mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-28 11:49:44 +00:00
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:
parent
ffd600a7f5
commit
1a6b4aaa49
Notes:
github-actions[bot]
2025-07-07 07:11:26 +00:00
Author: https://github.com/ADKaster
Commit: 1a6b4aaa49
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/5326
Reviewed-by: https://github.com/alimpfard
Reviewed-by: https://github.com/gmta ✅
2 changed files with 4 additions and 13 deletions
|
@ -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));
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue