From 873bc4ea61c19605f06e089e498a8814d5d88d1a Mon Sep 17 00:00:00 2001 From: Carmelo Messina Date: Thu, 9 Oct 2025 11:34:50 +0200 Subject: [PATCH] Content settings infrastructure: fix crash on desktop due to api change --- build/patches/Content-settings-infrastructure.patch | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/patches/Content-settings-infrastructure.patch b/build/patches/Content-settings-infrastructure.patch index d03ccf8b..118842ed 100644 --- a/build/patches/Content-settings-infrastructure.patch +++ b/build/patches/Content-settings-infrastructure.patch @@ -1049,7 +1049,7 @@ diff --git a/chrome/browser/ui/views/page_info/permission_toggle_row_view.cc b/c + permission_.setting = CONTENT_SETTING_ASK; + break; + case 4: -+ permission_.setting = CONTENT_SETTING_DEFAULT; ++ permission_.setting = std::nullopt; + break; + } + PermissionChanged();