From 863f05f8bc1e7e5fbb323be2b2d0f7f9a8f6e3ca Mon Sep 17 00:00:00 2001 From: ryan Date: Tue, 24 Dec 2024 14:28:12 +0300 Subject: [PATCH] fix(nostr): stop connection to public relay --- src/app.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app.rs b/src/app.rs index 57153ae..8cf312b 100644 --- a/src/app.rs +++ b/src/app.rs @@ -18,7 +18,7 @@ pub fn App() -> impl IntoView { // Nostr client subscription for items spawn_local(async move { - let nostr_client = NostrClient::new("wss://relay.damus.io").await.unwrap(); + let nostr_client = NostrClient::new("wss://relay.example.com").await.unwrap(); nostr_client.subscribe_to_items(tx.clone()).await.unwrap(); while let Some(content) = rx.recv().await {