diff --git a/storage/lvl.js b/storage/lvl.js index 179d1fc73..18c604d93 100644 --- a/storage/lvl.js +++ b/storage/lvl.js @@ -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)); }); };