Compare commits
3 Commits
v0.1.0-dev
...
v0.1.0-dev
Author | SHA1 | Date |
---|---|---|
semantic-release-bot | 04bf4d3f7c | |
Derrick Hammer | f067a8583d | |
Derrick Hammer | 9c5d417857 |
|
@ -1,3 +1,10 @@
|
|||
# [0.1.0-develop.71](https://git.lumeweb.com/LumeWeb/libs5/compare/v0.1.0-develop.70...v0.1.0-develop.71) (2023-11-18)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* value is a map ([9c5d417](https://git.lumeweb.com/LumeWeb/libs5/commit/9c5d417857376eef0fc7655c9abfc94485b3c6b3))
|
||||
|
||||
# [0.1.0-develop.70](https://git.lumeweb.com/LumeWeb/libs5/compare/v0.1.0-develop.69...v0.1.0-develop.70) (2023-11-18)
|
||||
|
||||
|
||||
|
|
|
@ -1,12 +1,12 @@
|
|||
{
|
||||
"name": "@lumeweb/libs5",
|
||||
"version": "0.1.0-develop.70",
|
||||
"version": "0.1.0-develop.71",
|
||||
"lockfileVersion": 3,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"name": "@lumeweb/libs5",
|
||||
"version": "0.1.0-develop.70",
|
||||
"version": "0.1.0-develop.71",
|
||||
"dependencies": {
|
||||
"@noble/curves": "^1.1.0",
|
||||
"@noble/hashes": "^1.3.1",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@lumeweb/libs5",
|
||||
"version": "0.1.0-develop.70",
|
||||
"version": "0.1.0-develop.71",
|
||||
"type": "module",
|
||||
"main": "lib/index.js",
|
||||
"repository": {
|
||||
|
|
|
@ -122,11 +122,11 @@ export class S5Node {
|
|||
if (!map.has(type)) return;
|
||||
|
||||
map.get(type)!.forEach((value, key) => {
|
||||
if (value[3] >= ts) {
|
||||
if (value.get(3) >= ts) {
|
||||
const storageLocation = new StorageLocation(
|
||||
type,
|
||||
value[1].map((v: string) => v), // Assuming value[1] is an array of strings
|
||||
value[3],
|
||||
value.get(1).map((v: string) => v), // Assuming value[1] is an array of strings
|
||||
value.get(3),
|
||||
);
|
||||
|
||||
// Assuming providerMessage is a property of StorageLocation
|
||||
|
|
Loading…
Reference in New Issue