Bug 1110420: need to not do geo-specific defaults for distribution builds. r=markh

This commit is contained in:
Gavin Sharp 2014-12-29 10:10:58 +11:00
parent 91b1e32f3c
commit a2aa86f740

View File

@ -411,7 +411,12 @@ function getIsUS() {
geoSpecificDefaults = Services.prefs.getBoolPref("browser.search.geoSpecificDefaults");
} catch(e) {}
if (!geoSpecificDefaults) {
let distroID;
try {
distroID = Services.prefs.getCharPref("distribution.id");
} catch (e) {}
if (!geoSpecificDefaults || distroID) {
return false;
}