Skip to content
Snippets Groups Projects
Commit 8568ac0e authored by Vivien Nicolas's avatar Vivien Nicolas
Browse files

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

parent 6f5f3f6e
No related branches found
No related tags found
No related merge requests found
......@@ -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);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment