27 lines
1.2 KiB
Diff
27 lines
1.2 KiB
Diff
From 699439119b1bd70de9e4180f2e8e6e32dd794669 Mon Sep 17 00:00:00 2001
|
|
From: Michael Catanzaro <mcatanzaro@gnome.org>
|
|
Date: Mon, 6 Apr 2026 13:32:19 -0500
|
|
Subject: [PATCH] Suppress WEBKIT_FORCE_SANDBOX warning when using Evolution
|
|
|
|
---
|
|
Source/WebKit/UIProcess/glib/WebProcessPoolGLib.cpp | 3 ++-
|
|
1 file changed, 2 insertions(+), 1 deletion(-)
|
|
|
|
diff --git a/Source/WebKit/UIProcess/glib/WebProcessPoolGLib.cpp b/Source/WebKit/UIProcess/glib/WebProcessPoolGLib.cpp
|
|
index 329dbe6a0281..80b9609a47be 100644
|
|
--- a/Source/WebKit/UIProcess/glib/WebProcessPoolGLib.cpp
|
|
+++ b/Source/WebKit/UIProcess/glib/WebProcessPoolGLib.cpp
|
|
@@ -154,7 +154,8 @@ void WebProcessPool::platformInitialize(NeedsGlobalStaticInitialization)
|
|
else {
|
|
static bool once = false;
|
|
if (!once) {
|
|
- g_warning("WEBKIT_FORCE_SANDBOX no longer allows disabling the sandbox. Use WEBKIT_DISABLE_SANDBOX_THIS_IS_DANGEROUS=1 instead.");
|
|
+ if (g_strcmp0(g_get_prgname(), "evolution"))
|
|
+ g_warning("WEBKIT_FORCE_SANDBOX no longer allows disabling the sandbox. Use WEBKIT_DISABLE_SANDBOX_THIS_IS_DANGEROUS=1 instead.");
|
|
once = true;
|
|
}
|
|
}
|
|
--
|
|
2.53.0
|
|
|