From 35e717dd4911d491817e312792dd95db84c483ca Mon Sep 17 00:00:00 2001 From: Hocuri Date: Tue, 8 Apr 2025 23:37:35 +0200 Subject: [PATCH] feat: Improve error message when the user tries to do AEAP (#6786) The old error message was too confusing. --- src/configure.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/configure.rs b/src/configure.rs index 0e879d5af..3ad54aa8e 100644 --- a/src/configure.rs +++ b/src/configure.rs @@ -129,7 +129,7 @@ impl Context { ); let old_addr = self.get_config(Config::ConfiguredAddr).await?; if self.is_configured().await? && !addr_cmp(&old_addr.unwrap_or_default(), ¶m.addr) { - bail!("Adding a new transport is not supported right now. Check back in a few months!"); + bail!("Changing your email address is not supported right now. Check back in a few months!"); } let cancel_channel = self.alloc_ongoing().await?;