Do not blow up if the error is that a chain cannot be found

pull/1/head
Caleb James DeLisle 9 years ago
parent a7da21ccba
commit 943a291903

@ -3,8 +3,8 @@ var nThen = require('nthen');
var getIndex = function(db, cName, cb) {
db.get(cName+'=>index', function(e, out){
if (e) { throw e; }
cb(parseInt(out));
if (e && !e.notFound) { throw e; }
cb(parseInt(out || 0));
});
};

Loading…
Cancel
Save