Bug 1254752 - Update pocket to use newChannelWithLoadInfo. r=scaraveo

This commit is contained in:
Christoph Kerschbaumer 2016-03-09 13:19:57 -08:00
Родитель c79819cb84
Коммит a1df03a4ab
1 изменённых файлов: 3 добавлений и 2 удалений

5
browser/extensions/pocket/bootstrap.js поставляемый
Просмотреть файл

@ -108,8 +108,9 @@ PocketAboutPage.prototype = {
Ci.nsIAboutModule.MAKE_UNLINKABLE;
},
newChannel: function(aURI) {
let channel = Services.io.newChannel(this.chromeURL, null, null);
newChannel: function(aURI, aLoadInfo) {
let channel = Services.io.newChannelFromURIWithLoadInfo(this.chromeURL,
aLoadInfo);
channel.originalURI = aURI;
return channel;
},