diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/sub_commands/pull.rs | 2 | ||||
| -rw-r--r-- | src/sub_commands/push.rs | 2 |
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 | ||