diff --git a/chrome/content/zotero/xpcom/zotero.js b/chrome/content/zotero/xpcom/zotero.js index 9dcfe7384d..6ec0593023 100644 --- a/chrome/content/zotero/xpcom/zotero.js +++ b/chrome/content/zotero/xpcom/zotero.js @@ -754,7 +754,7 @@ Services.scriptloader.loadSubScript("resource://zotero/polyfill.js"); if (!Zotero.startupError) { Zotero.startupError = Zotero.getString('startupError', Zotero.appName) + "\n\n" + Zotero.getString('db.integrityCheck.reportInForums') + "\n\n" - + (e.stack || e); + + e.message ? (e.message + "\n\n" + e.stack) : e; } return false; }