chore: update nostr sdk

This commit is contained in:
2026-03-25 13:52:21 +07:00
parent 99363475e0
commit d36364d60d
7 changed files with 282 additions and 181 deletions

View File

@@ -201,15 +201,12 @@ impl ChatPanel {
let mut notifications = client.notifications();
while let Some(notification) = notifications.next().await {
if let ClientNotification::Message {
message:
RelayMessage::Ok {
event_id,
status,
message,
},
relay_url,
} = notification
if let ClientNotification::Message { message, relay_url } = notification
&& let RelayMessage::Ok {
event_id,
status,
message,
} = *message
{
let sent_ids = sent_ids.read().await;