Bug 1943946 - Set deduplication days threshold to zero. r=mbeier

Differential Revision: https://phabricator.services.mozilla.com/D235609
This commit is contained in:
Marco Bonardo
2025-01-27 16:04:12 +00:00
parent a9b74d6911
commit c00a7f33e3
2 changed files with 2 additions and 2 deletions

View File

@@ -458,7 +458,7 @@ pref("browser.urlbar.suggest.recentsearches", true);
pref("browser.urlbar.suggest.quickactions", true); pref("browser.urlbar.suggest.quickactions", true);
pref("browser.urlbar.deduplication.enabled", false); pref("browser.urlbar.deduplication.enabled", false);
pref("browser.urlbar.deduplication.thresholdDays", 7); pref("browser.urlbar.deduplication.thresholdDays", 0);
#ifdef NIGHTLY_BUILD #ifdef NIGHTLY_BUILD
pref("browser.urlbar.scotchBonnet.enableOverride", true); pref("browser.urlbar.scotchBonnet.enableOverride", true);

View File

@@ -498,7 +498,7 @@ const PREF_URLBAR_DEFAULTS = new Map([
["deduplication.enabled", false], ["deduplication.enabled", false],
// How old history results have to be to be deduplicated. // How old history results have to be to be deduplicated.
["deduplication.thresholdDays", 7], ["deduplication.thresholdDays", 0],
// When using switch to tabs, if set to true this will move the tab into the // When using switch to tabs, if set to true this will move the tab into the
// active window. // active window.