upleb.uk

Public git repos — served from a NIP-34 GRASP relay at git.upleb.uk

summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDanConwayDev <DanConwayDev@protonmail.com>2024-01-26 20:10:04 +0000
committerDanConwayDev <DanConwayDev@protonmail.com>2024-01-26 20:10:04 +0000
commit9fb37c8c38f55a33657c824caaabba7f72b09ea4 (patch)
tree6d3b5fa1d6ea6ad03186b3d5b1e753a95cf72f94
parentd5058d11caad038fca493c988ff173d30de07672 (diff)
fix: use correct fallback relays
instead of the `more_fallback_relays`
-rw-r--r--src/sub_commands/pull.rs2
-rw-r--r--src/sub_commands/push.rs2
2 files changed, 2 insertions, 2 deletions
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<()> {
41 &git_repo, 41 &git_repo,
42 root_commit.to_string(), 42 root_commit.to_string(),
43 &client, 43 &client,
44 client.get_more_fallback_relays().clone(), 44 client.get_fallback_relays().clone(),
45 ) 45 )
46 .await?; 46 .await?;
47 47
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<()> {
44 &git_repo, 44 &git_repo,
45 root_commit.to_string(), 45 root_commit.to_string(),
46 &client, 46 &client,
47 client.get_more_fallback_relays().clone(), 47 client.get_fallback_relays().clone(),
48 ) 48 )
49 .await?; 49 .await?;
50 50