Include error message in startup error dialog
This commit is contained in:
parent
248847b775
commit
9b3d7a32e3
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue