Bug 1137909 - part 1: blocked downloads should keep data. r=paolo

This commit is contained in:
Jared Wein 2015-03-05 12:25:41 -05:00
parent 376b2d5d77
commit 61e6747bda

View File

@ -196,7 +196,12 @@ this.DownloadIntegration = {
return this.shouldKeepBlockedDataInTest;
}
return false;
const FIREFOX_ID = "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}";
let os = Services.appinfo.OS;
return Services.appinfo.ID == FIREFOX_ID &&
(os == "Darwin" ||
os == "Linux" ||
os == "WINNT");
},
/**