Bug 742765 - this._indexedDB is undefined in SettingsManager.js. r=gwagner

This commit is contained in:
Vivien Nicolas 2012-04-06 03:12:18 -07:00
parent 6f5f3f6e70
commit 8568ac0e30

View File

@ -64,7 +64,7 @@ SettingsDB.prototype = {
}
let self = this;
debug("try to open database:" + DB_NAME + " " + DB_VERSION + " " + this._indexedDB);
debug("try to open database:" + DB_NAME + " " + DB_VERSION + " " + this.db);
let req = aGlobal.mozIndexedDB.open(DB_NAME, DB_VERSION);
req.onsuccess = function (event) {
debug("Opened database:", DB_NAME, DB_VERSION);