Skip to content

Commit

Permalink
Hotfix 7.90.1 (#2039)
Browse files Browse the repository at this point in the history
Task/Issue URL: https://app.asana.com/0/414235014887631/1205575101456370/f
Tech Design URL:
CC: @miasma13 @jaceklyp @Bunn

Description:

Fixes an iOS 15 crash.
  • Loading branch information
samsymons authored Sep 26, 2023
1 parent ea8b782 commit b847336
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Configuration/Version.xcconfig
Original file line number Diff line number Diff line change
@@ -1 +1 @@
MARKETING_VERSION = 7.90.0
MARKETING_VERSION = 7.90.1
4 changes: 3 additions & 1 deletion DuckDuckGo/HomeCollectionView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,9 @@ class HomeCollectionView: UICollectionView {
renderers.install(renderer: FavoritesHomeViewSectionRenderer(viewModel: favoritesViewModel))

case .homeMessage:
renderers.install(renderer: HomeMessageViewSectionRenderer(homePageConfiguration: homePageConfiguration))
if #available(iOS 16.0, *) {
renderers.install(renderer: HomeMessageViewSectionRenderer(homePageConfiguration: homePageConfiguration))
}

case .appTrackingProtection:
#if APP_TRACKING_PROTECTION
Expand Down
2 changes: 1 addition & 1 deletion DuckDuckGo/Settings.bundle/Root.plist
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<array>
<dict>
<key>DefaultValue</key>
<string>7.90.0</string>
<string>7.90.1</string>
<key>Key</key>
<string>version</string>
<key>Title</key>
Expand Down

0 comments on commit b847336

Please sign in to comment.