Fix blank window when opening ZotFile's zotero://open-pdf links
Fixes https://github.com/jlegewie/zotfile/issues/272
This commit is contained in:
parent
752e25e282
commit
dd5d3a8668
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||||
|
|
Loading…
Add table
Reference in a new issue