From ca5bbea0d4c4fd86eb80f99688bcb78f8ba68877 Mon Sep 17 00:00:00 2001 From: Luke Karrys Date: Mon, 6 Mar 2023 15:46:03 -0700 Subject: fix(client): always read session_path from settings (#757) * fix(client): always read session_path from settings * fixup! fix(client): always read session_path from settings * fixup! fix(client): always read session_path from settings --- src/command/client/sync.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/command/client/sync.rs') diff --git a/src/command/client/sync.rs b/src/command/client/sync.rs index f71bcc99..c485e240 100644 --- a/src/command/client/sync.rs +++ b/src/command/client/sync.rs @@ -39,7 +39,7 @@ impl Cmd { match self { Self::Sync { force } => run(&settings, force, db).await, Self::Login(l) => l.run(&settings).await, - Self::Logout => logout::run(), + Self::Logout => logout::run(&settings), Self::Register(r) => r.run(&settings).await, Self::Key { base64 } => { use atuin_client::encryption::{encode_key, load_key}; -- cgit v1.3.1