upleb.uk

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

summaryrefslogtreecommitdiff
path: root/src/sub_commands/pull.rs
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 /src/sub_commands/pull.rs
parentd5058d11caad038fca493c988ff173d30de07672 (diff)
fix: use correct fallback relays
instead of the `more_fallback_relays`
Diffstat (limited to 'src/sub_commands/pull.rs')
-rw-r--r--src/sub_commands/pull.rs2
1 files changed, 1 insertions, 1 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