From 9fb37c8c38f55a33657c824caaabba7f72b09ea4 Mon Sep 17 00:00:00 2001 From: DanConwayDev Date: Fri, 26 Jan 2024 20:10:04 +0000 Subject: fix: use correct fallback relays instead of the `more_fallback_relays` --- src/sub_commands/pull.rs | 2 +- src/sub_commands/push.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'src/sub_commands') diff --git a/src/sub_commands/pull.rs b/src/sub_commands/pull.rs index 70a015a..a8f9529 100644 --- a/src/sub_commands/pull.rs +++ b/src/sub_commands/pull.rs @@ -41,7 +41,7 @@ pub async fn launch() -> Result<()> { &git_repo, root_commit.to_string(), &client, - client.get_more_fallback_relays().clone(), + client.get_fallback_relays().clone(), ) .await?; diff --git a/src/sub_commands/push.rs b/src/sub_commands/push.rs index 7c64bb2..e592cd7 100644 --- a/src/sub_commands/push.rs +++ b/src/sub_commands/push.rs @@ -44,7 +44,7 @@ pub async fn launch(cli_args: &Cli) -> Result<()> { &git_repo, root_commit.to_string(), &client, - client.get_more_fallback_relays().clone(), + client.get_fallback_relays().clone(), ) .await?; -- cgit v1.2.3