diff options
author | sommerfeld <sommerfeld@sommerfeld.dev> | 2024-04-24 01:49:20 +0100 |
---|---|---|
committer | sommerfeld <sommerfeld@sommerfeld.dev> | 2024-04-24 01:49:20 +0100 |
commit | b125bde9e4c8955fcfb6aae8ce9def13bfff726e (patch) | |
tree | 21a6cfedff69b7b8ab369e8f3cdf08432d9e456b /src/actions | |
parent | 9ebbb9ee741c1d78a52789a646af83bce21e5a78 (diff) | |
download | sentrum-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.rs | 2 |
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 } |