diff --git a/src/scheduler/connectivity.rs b/src/scheduler/connectivity.rs index 6e9e1d200..337b126ca 100644 --- a/src/scheduler/connectivity.rs +++ b/src/scheduler/connectivity.rs @@ -318,10 +318,6 @@ impl Context { .yellow { background-color: #fdc625; } - .not-started-error { - font-size: 2em; - color: red; - } "# @@ -341,7 +337,10 @@ impl Context { sched.smtp.state.connectivity.clone(), ), _ => { - ret += "
Error: IO Not Started

Please report this issue to the app developer.

\n\n"; + ret += &format!( + "

{}

\n\n", + stock_str::not_connected(self).await + ); return Ok(ret); } };