We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 96524bc commit e810d8eCopy full SHA for e810d8e
crates/bcr-ebill-transport/src/handler/nostr_contact_processor.rs
@@ -82,11 +82,10 @@ impl NostrContactProcessor {
82
}
83
84
// Trigger relay refresh to include new contact's relays
85
- if let Some(ref client) = self.nostr_client {
86
- if let Err(e) = client.refresh_relays().await {
+ if let Some(ref client) = self.nostr_client
+ && let Err(e) = client.refresh_relays().await {
87
warn!("Failed to refresh relays after contact update for {node_id}: {e}");
88
89
- }
90
91
92
0 commit comments