commit a549b9a40719e68eedce64f81178a0f729fc20c9
parent f7f5d8b9d67450a2fc18af1576d977ab4967171c
Author: Simon Kornblith <simon@simonster.com>
Date: Wed, 30 May 2012 00:23:00 -0400
Fix integration error reporting, broken by 26f5765c294f5f9cdae2a9e3ad8921ed442691ad
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/chrome/content/zotero/xpcom/integration.js b/chrome/content/zotero/xpcom/integration.js
@@ -657,7 +657,7 @@ Zotero.Integration = new function() {
if(!message && typeof(e) == "object") message = "\n\n"+e.toString();
- if(message.indexOf("ExceptionAlreadyDisplayed") !== -1) {
+ if(message.indexOf("ExceptionAlreadyDisplayed") === -1) {
displayError = Zotero.getString("integration.error.generic")+message;
}
Zotero.debug(e);