diff options
Diffstat (limited to 'src/lib/login/mod.rs')
| -rw-r--r-- | src/lib/login/mod.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/login/mod.rs b/src/lib/login/mod.rs index d2725e7..00dbb17 100644 --- a/src/lib/login/mod.rs +++ b/src/lib/login/mod.rs | |||
| @@ -61,12 +61,12 @@ fn print_logged_in_as( | |||
| 61 | source: &SignerInfoSource, | 61 | source: &SignerInfoSource, |
| 62 | ) -> Result<()> { | 62 | ) -> Result<()> { |
| 63 | if !offline_mode && user_ref.metadata.created_at.eq(&Timestamp::from(0)) { | 63 | if !offline_mode && user_ref.metadata.created_at.eq(&Timestamp::from(0)) { |
| 64 | eprintln!("cannot find profile..."); | 64 | eprintln!("failed to find profile..."); |
| 65 | } else if !offline_mode && user_ref.metadata.name.eq(&user_ref.public_key.to_bech32()?) { | 65 | } else if !offline_mode && user_ref.metadata.name.eq(&user_ref.public_key.to_bech32()?) { |
| 66 | eprintln!("cannot extract account name from account metadata..."); | 66 | eprintln!("failed to extract account name from account metadata..."); |
| 67 | } else if !offline_mode && user_ref.relays.created_at.eq(&Timestamp::from(0)) { | 67 | } else if !offline_mode && user_ref.relays.created_at.eq(&Timestamp::from(0)) { |
| 68 | eprintln!( | 68 | eprintln!( |
| 69 | "cannot find your relay list. consider using another nostr client to create one to enhance your nostr experience." | 69 | "failed to find your relay list. consider using another nostr client to create one to enhance your nostr experience." |
| 70 | ); | 70 | ); |
| 71 | } | 71 | } |
| 72 | eprintln!( | 72 | eprintln!( |