From 98a2bd1716d1ee8ea64f18845b86c893a131b5d1 Mon Sep 17 00:00:00 2001 From: aidanaden Date: Thu, 20 Jun 2024 23:42:38 +0800 Subject: [PATCH] minor: update error text --- rm-main/src/app.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rm-main/src/app.rs b/rm-main/src/app.rs index 1612f9b..bc502f4 100644 --- a/rm-main/src/app.rs +++ b/rm-main/src/app.rs @@ -45,7 +45,7 @@ impl Ctx { } Err(_) => { let url = config.connection.url; - return Err(Error::msg(format!("Failed to connect to remote transmission client!\nPlease verify connection and authentication to {url}"))); + return Err(Error::msg(format!("Connection to transmission failed!\nPlease verify connection and credentials to {url}"))); } } }