Fetch dvm relays in feeds

This commit is contained in:
Jon Staab
2025-05-05 11:17:56 -07:00
parent 2633a1d84e
commit 0e4832a716
4 changed files with 11 additions and 5 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@welshman/app",
"version": "0.2.1",
"version": "0.2.2",
"author": "hodlbod",
"license": "MIT",
"description": "A collection of svelte stores for use in building nostr client applications.",
+1 -1
View File
@@ -37,7 +37,7 @@ export class RelaysStorageAdapter {
}
sync() {
return throttled(3000, relays).subscribe($relays => Boolean(console.log('relays', $relays))||bulkPut(this.options.name, $relays))
return throttled(3000, relays).subscribe($relays => bulkPut(this.options.name, $relays))
}
}