aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src/actions
diff options
context:
space:
mode:
authorLibravatar sommerfeld <sommerfeld@sommerfeld.dev>2024-04-24 01:49:20 +0100
committerLibravatar sommerfeld <sommerfeld@sommerfeld.dev>2024-04-24 01:49:20 +0100
commitb125bde9e4c8955fcfb6aae8ce9def13bfff726e (patch)
tree21a6cfedff69b7b8ab369e8f3cdf08432d9e456b /src/actions
parent9ebbb9ee741c1d78a52789a646af83bce21e5a78 (diff)
downloadsentrum-b125bde9e4c8955fcfb6aae8ce9def13bfff726e.tar.gz
sentrum-b125bde9e4c8955fcfb6aae8ce9def13bfff726e.tar.bz2
sentrum-b125bde9e4c8955fcfb6aae8ce9def13bfff726e.zip
Use alt selector for displaying anyhow::Error
Diffstat (limited to 'src/actions')
-rw-r--r--src/actions/nostr.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/actions/nostr.rs b/src/actions/nostr.rs
index 3507d2e..6ad91b5 100644
--- a/src/actions/nostr.rs
+++ b/src/actions/nostr.rs
@@ -156,7 +156,7 @@ impl<'a> NostrAction<'a> {
nip05::get_profile(&nostr_config.recipient, nostr_config.proxy)
.await
.with_context(|| {
- format!("invalid recipient '{}': {}", nostr_config.recipient, e)
+ format!("invalid recipient '{}': {:#}", nostr_config.recipient, e)
})?
.public_key
}