Changed IndexedDB provider to use RW context if RO is requested. Fixes issue #128

This commit is contained in:
pbouianov 2014-03-05 14:45:59 -05:00
parent 3c9c344011
commit fe9b94d4ec
1 changed files with 4 additions and 1 deletions

View File

@ -116,7 +116,10 @@ define(function(require) {
};
};
IndexedDB.prototype.getReadOnlyContext = function() {
return new IndexedDBContext(this.db, IDB_RO);
// Due to timing issues in Chrome with readwrite vs. readonly indexeddb transactions
// always use readwrite so we can make sure pending commits finish before callbacks.
// See https://github.com/js-platform/filer/issues/128
return new IndexedDBContext(this.db, IDB_RW);
};
IndexedDB.prototype.getReadWriteContext = function() {
return new IndexedDBContext(this.db, IDB_RW);