commit 8dadb4fe69fdc5bb04549933123ae115af2a53a7 parent d08df984d349a29da6a1a9022638cbc46f35551a Author: William Casarin <jb55@jb55.com> Date: Thu, 27 Oct 2022 18:22:46 -0700 damus_web_init: remove thread param Diffstat:
M | webv2/damus.js | | | 2 | +- |
M | webv2/index.html | | | 2 | +- |
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/webv2/damus.js b/webv2/damus.js @@ -46,7 +46,7 @@ function init_home_model() { } } -async function damus_web_init(thread) +async function damus_web_init() { const {RelayPool} = nostrjs const pool = RelayPool(["wss://relay.damus.io"]) diff --git a/webv2/index.html b/webv2/index.html @@ -45,7 +45,7 @@ <script src="nostr.js?v=3"></script> <script src="damus.js?v=9"></script> <script> - const relay = damus_web_init("4e8b44bb43018f79bd3efcdcd71af43814cdf996e0c62adedda1ac33bf5e1371") + const relay = damus_web_init() </script> </body> </html>