From cc39ee81440301df40b74555b7b6f56bfd80df98 Mon Sep 17 00:00:00 2001 From: Dan Stillman Date: Wed, 27 Feb 2013 04:50:51 -0500 Subject: [PATCH] Show the startup error in the alert --- chrome/content/zotero/xpcom/zotero.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chrome/content/zotero/xpcom/zotero.js b/chrome/content/zotero/xpcom/zotero.js index c8cd887c9..7643523f6 100644 --- a/chrome/content/zotero/xpcom/zotero.js +++ b/chrome/content/zotero/xpcom/zotero.js @@ -642,7 +642,7 @@ Components.utils.import("resource://gre/modules/Services.jsm"); Zotero.startupError = msg; } else { - Zotero.startupError = Zotero.getString('startupError.databaseUpgradeError'); + Zotero.startupError = Zotero.getString('startupError.databaseUpgradeError') + "\n\n" + e; } Zotero.skipLoading = true; Components.utils.reportError(e);