aboutsummaryrefslogtreecommitdiffstats
path: root/crates/atuin-client/src/record
diff options
context:
space:
mode:
Diffstat (limited to 'crates/atuin-client/src/record')
-rw-r--r--crates/atuin-client/src/record/sync.rs10
1 files changed, 4 insertions, 6 deletions
diff --git a/crates/atuin-client/src/record/sync.rs b/crates/atuin-client/src/record/sync.rs
index 52c34a50..37840b75 100644
--- a/crates/atuin-client/src/record/sync.rs
+++ b/crates/atuin-client/src/record/sync.rs
@@ -56,10 +56,9 @@ pub async fn diff(
let client = Client::new(
&settings.sync_address,
settings
- .session_token()
+ .sync_auth_token()
.await
- .map_err(|e| SyncError::RemoteRequestError { msg: e.to_string() })?
- .as_str(),
+ .map_err(|e| SyncError::RemoteRequestError { msg: e.to_string() })?,
settings.network_connect_timeout,
settings.network_timeout,
)
@@ -282,10 +281,9 @@ pub async fn sync_remote(
let client = Client::new(
&settings.sync_address,
settings
- .session_token()
+ .sync_auth_token()
.await
- .map_err(|e| SyncError::RemoteRequestError { msg: e.to_string() })?
- .as_str(),
+ .map_err(|e| SyncError::RemoteRequestError { msg: e.to_string() })?,
settings.network_connect_timeout,
settings.network_timeout,
)