Fix blank window when opening ZotFile's zotero://open-pdf links

Fixes https://github.com/jlegewie/zotfile/issues/272
This commit is contained in:
Dan Stillman 2017-07-12 18:25:49 -04:00
parent 752e25e282
commit dd5d3a8668

View file

@ -3262,7 +3262,7 @@ var ZoteroPane = new function()
if (uri.startsWith('zotero:')) { if (uri.startsWith('zotero:')) {
let nsIURI = Services.io.newURI(uri, null, null); let nsIURI = Services.io.newURI(uri, null, null);
let handler = Components.classes["@mozilla.org/network/protocol;1?name=zotero"] let handler = Components.classes["@mozilla.org/network/protocol;1?name=zotero"]
.createInstance(Components.interfaces.nsIProtocolHandler); .getService();
let extension = handler.wrappedJSObject.getExtension(nsIURI); let extension = handler.wrappedJSObject.getExtension(nsIURI);
if (extension.noContent) { if (extension.noContent) {
extension.doAction(nsIURI); extension.doAction(nsIURI);