Commit d5ff32a527674c60dbf3e18c20036313e529267f
bootstrap: fix detecting missing blob
cel committed on 9/3/2018, 5:56:44 AMParent: d19123582efc4df2c22ff4e64d3af143cf734bc0
Files changed
index.js | changed |
index.js | |||
---|---|---|---|
@@ -376,9 +376,9 @@ | |||
376 | 376 … | ||
377 | 377 … | function getBlob(sbot, id, cb) { | |
378 | 378 … | var blobs = sbot.blobs | |
379 | 379 … | blobs.size(id, function (err, size) { | |
380 | - if (err) return cb(err) | ||
380 … | + if (err && err.code !== 'ENOENT') return cb(err) | ||
381 | 381 … | if (typeof size === 'number') cb(null, blobs.get(id), size) | |
382 | 382 … | else blobs.want(id, function (err, got) { | |
383 | 383 … | if (err) cb(err) | |
384 | 384 … | else if (!got) cb('missing blob ' + id) |
Built with git-ssb-web