From e4ead79cb1a16bbfe891db35c21adfca7933c9dc Mon Sep 17 00:00:00 2001 From: CoCo_Sol007 Date: Thu, 21 Mar 2024 09:24:37 +0100 Subject: [PATCH] save --- crates/relay-client/src/lib.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/crates/relay-client/src/lib.rs b/crates/relay-client/src/lib.rs index 05eec18..b052784 100644 --- a/crates/relay-client/src/lib.rs +++ b/crates/relay-client/src/lib.rs @@ -80,8 +80,7 @@ impl Connection { path.push(".relay-data"); // Check if the file exists. - match false { - // path.exists() + match path.exists() { true => { // Read the file and parse the identifier and secret key. let contents = fs::read(&path)?;