Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion idbstore.js
Original file line number Diff line number Diff line change
Expand Up @@ -447,8 +447,15 @@
var hasSuccess = false,
result = null,
putRequest;

// db.transaction can throw if the db wasn't properly initialize or if there is a WriteError
try {
var putTransaction = this.db.transaction([this.storeName], this.consts.READ_WRITE);
}
catch (e){
return void onError(e)
}

var putTransaction = this.db.transaction([this.storeName], this.consts.READ_WRITE);
putTransaction.oncomplete = function () {
var callback = hasSuccess ? onSuccess : onError;
callback(result);
Expand Down