From 216f4ce5c0bdad54a6e26ae0ca0f2965b9bf35fa Mon Sep 17 00:00:00 2001 From: Carmelo Messina Date: Wed, 13 Jul 2022 17:04:07 +0200 Subject: [PATCH] use space as separator --- build/patches/Partitioning-Blink-memory-cache.patch | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build/patches/Partitioning-Blink-memory-cache.patch b/build/patches/Partitioning-Blink-memory-cache.patch index d5c697cf..75fe693f 100644 --- a/build/patches/Partitioning-Blink-memory-cache.patch +++ b/build/patches/Partitioning-Blink-memory-cache.patch @@ -1,5 +1,5 @@ From: uazo -Date: Wed, 6 Jul 2022 10:15:20 +0000 +Date: Wed, 13 Jul 2022 14:51:09 +0000 Subject: Partitioning Blink memory cache --- @@ -160,11 +160,11 @@ diff --git a/third_party/blink/renderer/platform/loader/fetch/resource_fetcher.c if (properties_->GetControllerServiceWorkerMode() != mojom::ControllerServiceWorkerMode::kNoController) { - return String::Number(properties_->ServiceWorkerId()); -+ return origin_url + "_" + String::Number(properties_->ServiceWorkerId()); ++ return origin_url + " " + String::Number(properties_->ServiceWorkerId()); } if (properties_->WebBundlePhysicalUrl().IsValid()) - return properties_->WebBundlePhysicalUrl().GetString(); -+ return origin_url + "_" + properties_->WebBundlePhysicalUrl().GetString(); ++ return origin_url + " " + properties_->WebBundlePhysicalUrl().GetString(); // Requests that can be satisfied via `archive_` (i.e. MHTML) or // `subresource_web_bundles_` should not participate in the global caching,