diff --git a/rm-main/src/app.rs b/rm-main/src/app.rs index bc502f4..c0d34cd 100644 --- a/rm-main/src/app.rs +++ b/rm-main/src/app.rs @@ -43,9 +43,11 @@ impl Ctx { session_info, }); } - Err(_) => { + Err(e) => { let url = config.connection.url; - return Err(Error::msg(format!("Connection to transmission failed!\nPlease verify connection and credentials to {url}"))); + return Err(Error::msg(format!( + "{e}\nIs the connection info in {url} correct?" + ))); } } }