diff --git a/Userland/Libraries/LibWebView/Application.cpp b/Userland/Libraries/LibWebView/Application.cpp index ba7ec3d74dd..4cc013c5b14 100644 --- a/Userland/Libraries/LibWebView/Application.cpp +++ b/Userland/Libraries/LibWebView/Application.cpp @@ -105,6 +105,11 @@ void Application::initialize(Main::Arguments const& arguments, URL::URL new_tab_ create_platform_arguments(args_parser); args_parser.parse(arguments); + // Our persisted SQL storage assumes it runs in a singleton process. If we have multiple UI processes accessing + // the same underlying database, one of them is likely to fail. + if (force_new_process) + disable_sql_database = true; + Optional debug_process_type; Optional profile_process_type;