diff --git a/browser/extensions/pocket/bootstrap.js b/browser/extensions/pocket/bootstrap.js index 9bbfbf7f3e7e..81f348766770 100644 --- a/browser/extensions/pocket/bootstrap.js +++ b/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; },