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)?;