Compare commits
3 Commits
v0.2.0-dev
...
v0.2.0-dev
Author | SHA1 | Date |
---|---|---|
semantic-release-bot | 823ecaf600 | |
Derrick Hammer | 49592463f6 | |
Derrick Hammer | 108ab86fcc |
|
@ -1,3 +1,10 @@
|
|||
# [0.2.0-develop.49](https://git.lumeweb.com/LumeWeb/libweb/compare/v0.2.0-develop.48...v0.2.0-develop.49) (2023-09-04)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* use hashType not type ([108ab86](https://git.lumeweb.com/LumeWeb/libweb/commit/108ab86fcc82cd22d394939e00ec8047eaaab901))
|
||||
|
||||
# [0.2.0-develop.48](https://git.lumeweb.com/LumeWeb/libweb/compare/v0.2.0-develop.47...v0.2.0-develop.48) (2023-09-04)
|
||||
|
||||
|
||||
|
|
|
@ -1,12 +1,12 @@
|
|||
{
|
||||
"name": "@lumeweb/libweb",
|
||||
"version": "0.2.0-develop.48",
|
||||
"version": "0.2.0-develop.49",
|
||||
"lockfileVersion": 3,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"name": "@lumeweb/libweb",
|
||||
"version": "0.2.0-develop.48",
|
||||
"version": "0.2.0-develop.49",
|
||||
"dependencies": {
|
||||
"@lumeweb/community-portals": "^0.1.0-develop.6",
|
||||
"@lumeweb/libportal": "0.2.0-develop.23",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@lumeweb/libweb",
|
||||
"version": "0.2.0-develop.48",
|
||||
"version": "0.2.0-develop.49",
|
||||
"main": "lib/index.js",
|
||||
"type": "module",
|
||||
"repository": {
|
||||
|
|
|
@ -39,7 +39,7 @@ export function encodeCid(
|
|||
if (typeof hash !== "string" && !(hash instanceof Uint8Array)) {
|
||||
size = hash.size;
|
||||
type = type ?? hash.type;
|
||||
hashType = hashType ?? hash.type;
|
||||
hashType = hashType ?? hash.hashType;
|
||||
hash = hash.hash;
|
||||
}
|
||||
try {
|
||||
|
|
Loading…
Reference in New Issue