hypercore 11.1.0 → 11.1.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.
Files changed (2) hide show
  1. package/index.js +1 -1
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -417,7 +417,7 @@ class Hypercore extends EventEmitter {
417
417
  }
418
418
 
419
419
  if (opts.manifest && !this.core.header.manifest) {
420
- await this.core.setManifest(opts.manifest)
420
+ await this.core.setManifest(createManifest(opts.manifest))
421
421
  }
422
422
 
423
423
  this.core.replicator.updateActivity(this._active ? 1 : 0)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hypercore",
3
- "version": "11.1.0",
3
+ "version": "11.1.1",
4
4
  "description": "Hypercore is a secure, distributed append-only log",
5
5
  "main": "index.js",
6
6
  "scripts": {