From 334907fa3791566be8a91a7f609377bc1fd97cbf Mon Sep 17 00:00:00 2001 From: Michal Smaga Date: Wed, 27 Nov 2024 11:21:41 +0100 Subject: [PATCH] Apply latest hotfix changes (#3627) Task/Issue URL: https://app.asana.com/0/414709148257752/1208829922317861/f Tech Design URL: CC: **Description**: Apply latest 7.146.1 hotfix changes --- ###### Internal references: [Software Engineering Expectations](https://app.asana.com/0/59792373528535/199064865822552) [Technical Design Template](https://app.asana.com/0/59792373528535/184709971311943) --- DuckDuckGo.xcodeproj/project.pbxproj | 2 +- .../project.xcworkspace/xcshareddata/swiftpm/Package.resolved | 4 ++-- DuckDuckGo/AppDelegate.swift | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/DuckDuckGo.xcodeproj/project.pbxproj b/DuckDuckGo.xcodeproj/project.pbxproj index f5048f956f..8f5dac8e84 100644 --- a/DuckDuckGo.xcodeproj/project.pbxproj +++ b/DuckDuckGo.xcodeproj/project.pbxproj @@ -11054,7 +11054,7 @@ repositoryURL = "https://github.com/DuckDuckGo/BrowserServicesKit"; requirement = { kind = exactVersion; - version = 211.1.2; + version = 211.1.3; }; }; 9F8FE9472BAE50E50071E372 /* XCRemoteSwiftPackageReference "lottie-spm" */ = { diff --git a/DuckDuckGo.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved b/DuckDuckGo.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved index 99e58d2d10..4e271933b0 100644 --- a/DuckDuckGo.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved +++ b/DuckDuckGo.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved @@ -32,8 +32,8 @@ "kind" : "remoteSourceControl", "location" : "https://github.com/DuckDuckGo/BrowserServicesKit", "state" : { - "revision" : "deacf613553334f35053a2092d4e062e4775544c", - "version" : "211.1.2" + "revision" : "f83b1f5ebd328bc2447d1a3793149bb21037d685", + "version" : "211.1.3" } }, { diff --git a/DuckDuckGo/AppDelegate.swift b/DuckDuckGo/AppDelegate.swift index b8f8b9ec25..aab60bfd6b 100644 --- a/DuckDuckGo/AppDelegate.swift +++ b/DuckDuckGo/AppDelegate.swift @@ -444,7 +444,7 @@ import os.log return nil } - return WKWebsiteDataStore.current().httpCookieStore + return WKHTTPCookieStoreWrapper(store: WKWebsiteDataStore.current().httpCookieStore) }, eventMapping: SubscriptionCookieManageEventPixelMapping()) @@ -653,7 +653,7 @@ import os.log } } - Task { @MainActor in + Task { await subscriptionCookieManager.refreshSubscriptionCookie() }