hypercore 10.30.0 → 10.30.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -34,7 +34,7 @@ module.exports = class ReceiverQueue {
34
34
  }
35
35
 
36
36
  _processRequest (req) {
37
- if (req.block || req.hash || req.seek || req.upgrade) {
37
+ if (req.block || req.hash || req.seek || req.upgrade || req.manifest) {
38
38
  this.requests.delete(req.id)
39
39
  this.length--
40
40
  return req
@@ -51,6 +51,7 @@ module.exports = class ReceiverQueue {
51
51
  req.hash = null
52
52
  req.seek = null
53
53
  req.upgrade = null
54
+ req.manifest = false
54
55
 
55
56
  this.requests.delete(id)
56
57
  this.length--
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hypercore",
3
- "version": "10.30.0",
3
+ "version": "10.30.1",
4
4
  "description": "Hypercore is a secure, distributed append-only log",
5
5
  "main": "index.js",
6
6
  "scripts": {