diff --git a/chrome/content/zotero/zoteroPane.js b/chrome/content/zotero/zoteroPane.js index 145bb4a99d..301feb0aab 100644 --- a/chrome/content/zotero/zoteroPane.js +++ b/chrome/content/zotero/zoteroPane.js @@ -3300,7 +3300,12 @@ var ZoteroPane = new function() } } - Zotero.launchURL(uri); + try { + Zotero.launchURL(uri); + } + catch (e) { + Zotero.logError(e); + } } }