commit c6b30b94e4a25d942968cbbce2e322833ff7e40b
parent ea02f39f3e53f2849c77fb2f48e602c1f718df68
Author: Simon Kornblith <simon@simonster.com>
Date: Wed, 20 Jul 2011 03:07:07 +0000
Fix error on failure to open DB (broken since megacommit)
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/chrome/content/zotero/xpcom/zotero.js b/chrome/content/zotero/xpcom/zotero.js
@@ -455,7 +455,7 @@ if(appInfo.platformVersion[0] >= 2) {
Zotero.Repo.init();
} else {
Zotero.debug("Loading in full mode");
- _initFull();
+ if(!_initFull()) return false;
}
this.initialized = true;