Skip to content

Commit

Permalink
Merge hotfix changes from 7.147.1 (#3674)
Browse files Browse the repository at this point in the history
Task/Issue URL:
https://app.asana.com/0/414709148257752/1208887772407026/f

**Description**:
Merging in changes from the hotfix version 7.147.1.

---
###### Internal references:
[Software Engineering
Expectations](https://app.asana.com/0/59792373528535/199064865822552)
[Technical Design
Template](https://app.asana.com/0/59792373528535/184709971311943)

---------

Co-authored-by: Chris Brind <[email protected]>
  • Loading branch information
miasma13 and brindy authored Dec 4, 2024
1 parent a58b9c9 commit d4cc248
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 5 deletions.
2 changes: 1 addition & 1 deletion DuckDuckGo.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -11358,7 +11358,7 @@
repositoryURL = "https://github.com/DuckDuckGo/BrowserServicesKit";
requirement = {
kind = exactVersion;
version = 216.0.1;
version = "216.0.1-1";
};
};
9F8FE9472BAE50E50071E372 /* XCRemoteSwiftPackageReference "lottie-spm" */ = {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@
"kind" : "remoteSourceControl",
"location" : "https://github.com/DuckDuckGo/BrowserServicesKit",
"state" : {
"revision" : "59f8fb2f850f8a0482c604d07396e01e8de59d21",
"version" : "216.0.1"
"revision" : "3517357ecd9d5e9ef7ef2f229c0ebc6460f309e6",
"version" : "216.0.1-1"
}
},
{
Expand Down
5 changes: 4 additions & 1 deletion DuckDuckGo/AppDependencyProvider.swift
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,10 @@ final class AppDependencyProvider: DependencyProvider {
}
}

let subscriptionManager = DefaultSubscriptionManager(storePurchaseManager: DefaultStorePurchaseManager(subscriptionFeatureMappingCache: subscriptionFeatureMappingCache),
let storePurchaseManager = DefaultStorePurchaseManager(subscriptionFeatureMappingCache: subscriptionFeatureMappingCache,
subscriptionFeatureFlagger: subscriptionFeatureFlagger)

let subscriptionManager = DefaultSubscriptionManager(storePurchaseManager: storePurchaseManager,
accountManager: accountManager,
subscriptionEndpointService: subscriptionService,
authEndpointService: authService,
Expand Down
2 changes: 1 addition & 1 deletion DuckDuckGo/TextZoomEditorModel.swift
Original file line number Diff line number Diff line change
Expand Up @@ -59,11 +59,11 @@ class TextZoomEditorModel: ObservableObject {
NotificationCenter.default.post(
name: AppUserDefaults.Notifications.textZoomChange,
object: nil)
DailyPixel.fire(pixel: .textZoomChangedOnPageDaily)
}

func onDismiss() {
guard initialValue.rawValue != TextZoomLevel.allCases[value].rawValue else { return }
DailyPixel.fire(pixel: .textZoomChangedOnPageDaily)
Pixel.fire(.textZoomChangedOnPage, withAdditionalParameters: [
PixelParameters.textZoomInitial: String(initialValue.rawValue),
PixelParameters.textZoomUpdated: String(TextZoomLevel.allCases[value].rawValue),
Expand Down

0 comments on commit d4cc248

Please sign in to comment.