Remove DB_REBUILD config option

I don't think anyone has used this in many years.
This commit is contained in:
Dan Stillman 2014-12-09 18:35:03 -05:00
parent 4f7e5446e8
commit 2a27cd506d
2 changed files with 0 additions and 16 deletions

View file

@ -1108,21 +1108,6 @@ Zotero.DBConnection.prototype._getDBConnection = function () {
var fileName = this._dbName + '.sqlite';
if (this._dbName == 'zotero' && ZOTERO_CONFIG['DB_REBUILD']) {
if (confirm('Erase all user data and recreate database from schema?')) {
// Delete existing Zotero database
if (file.exists()) {
file.remove(null);
}
// Delete existing storage folder
var dir = Zotero.getStorageDirectory();
if (dir.exists()) {
dir.remove(true);
}
}
}
var ps = Components.classes["@mozilla.org/embedcomp/prompt-service;1"]
.getService(Components.interfaces.nsIPromptService);

View file

@ -25,7 +25,6 @@
const ZOTERO_CONFIG = {
GUID: 'zotero@chnm.gmu.edu',
DB_REBUILD: false, // erase DB and recreate from schema
REPOSITORY_URL: 'https://repo.zotero.org/repo',
REPOSITORY_CHECK_INTERVAL: 86400, // 24 hours
REPOSITORY_RETRY_INTERVAL: 3600, // 1 hour