fixes for noogle and new sdk

This commit is contained in:
Believethehype
2024-09-15 11:48:02 +02:00
parent 9d1d570ed8
commit 79af336a7c
11 changed files with 157 additions and 95 deletions

View File

@@ -63,8 +63,11 @@ let sortedIds = eventids.sort(function(a,b) {return (a.index > b.index) ? 1 : ((
catch{}
}
let r = store.state.relays.join(",")
tags.push(["relays", r])
let r = ["relays"]
for (let relay of store.state.relays){
r.push(relay)
}
tags.push(r)
let res;