Bug 553385: Bypass cache for update checks. r=robstrong

This commit is contained in:
Dave Townsend 2010-04-05 10:19:52 -07:00
Родитель 7bd4010fd3
Коммит c01f5feaf0
1 изменённых файлов: 1 добавлений и 0 удалений

Просмотреть файл

@ -431,6 +431,7 @@ function UpdateParser(id, type, updateKey, url, observer) {
createInstance(Ci.nsIXMLHttpRequest);
this.request.open("GET", url, true);
this.request.channel.notificationCallbacks = new BadCertHandler();
this.request.channel.loadFlags |= Ci.nsIRequest.LOAD_BYPASS_CACHE;
this.request.overrideMimeType("text/xml");
var self = this;
this.request.onload = function(event) { self.onLoad() };