Skip to content

Commit

Permalink
"v2.3.0 - suggested_sites"
Browse files Browse the repository at this point in the history
  • Loading branch information
p-bertran committed Oct 5, 2018
1 parent b471eaf commit 5b5e27b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Client/Configuration/Firefox.xcconfig
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
3 changes: 3 additions & 0 deletions Client/Frontend/Home/ActivityStreamPanel.swift
Original file line number Diff line number Diff line change
Expand Up @@ -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 ?? ""
}

Expand Down

0 comments on commit 5b5e27b

Please sign in to comment.