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 83bc497 commit 6dba141Copy full SHA for 6dba141
src/configure.rs
@@ -129,7 +129,9 @@ impl Context {
129
param.addr = addr_normalize(¶m.addr);
130
let old_addr = self.get_config(Config::ConfiguredAddr).await?;
131
if self.is_configured().await? && !addr_cmp(&old_addr.unwrap_or_default(), ¶m.addr) {
132
- bail!("Changing your email address is not supported right now. Check back in a few months!");
+ let error_msg = "Changing your email address is not supported right now. Check back in a few months!";
133
+ progress!(self, 0, Some(error_msg.to_string()));
134
+ bail!(error_msg);
135
}
136
let cancel_channel = self.alloc_ongoing().await?;
137
0 commit comments