diff --git a/Client/Configuration/Firefox.xcconfig b/Client/Configuration/Firefox.xcconfig index 4b0ba7fa71ca..b22539cd5aec 100644 --- a/Client/Configuration/Firefox.xcconfig +++ b/Client/Configuration/Firefox.xcconfig @@ -7,7 +7,7 @@ MOZ_BUNDLE_DISPLAY_NAME = Qwant // Bundle Identifier MOZ_BUNDLE_ID = com.qwant.mobile MOZ_BUNDLE_VERSION = 2.3.0 -MOZ_BUNDLE_BUILD_NUMBER = 1 +MOZ_BUNDLE_BUILD_NUMBER = 2 // Flag to indicate if we want to include the debug settings bundle or not INCLUDE_SETTINGS_BUNDLE = NO diff --git a/Client/Frontend/Home/ActivityStreamPanel.swift b/Client/Frontend/Home/ActivityStreamPanel.swift index f80e3f6761d4..41bb98db1ce4 100644 --- a/Client/Frontend/Home/ActivityStreamPanel.swift +++ b/Client/Frontend/Home/ActivityStreamPanel.swift @@ -593,6 +593,9 @@ extension ActivityStreamPanel: DataObserverDelegate { // How sites are merged together. We compare against the url's base domain. example m.youtube.com is compared against `youtube.com` let unionOnURL = { (site: Site) -> String in + if URL(string: site.url)?.hostSLD == "qwant" { + return URL(string: site.url)?.absoluteString ?? "" + } return URL(string: site.url)?.baseDomain ?? "" }