Fix apparent copy/paste error in rindexed.js

Looks like this should be doPut instead of doGet since doGet is not defined in this scope.
This commit is contained in:
go1dfish 2019-01-07 04:03:26 -08:00 committed by GitHub
parent 9f9b3e557c
commit 91bd68e1f3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -57,7 +57,7 @@
}; };
} }
if(!db){ if(!db){
waitDbReady(doGet, 100, function(){ waitDbReady(doPut, 100, function(){
var es = 'ERROR: Timeout: RAD IndexedDB not ready.'; var es = 'ERROR: Timeout: RAD IndexedDB not ready.';
console.log(es); console.log(es);
cb(es, undefined); cb(es, undefined);
@ -126,4 +126,4 @@
} else { } else {
module.exports = Store; module.exports = Store;
} }
}()); }());