diff options
| author | DanConwayDev <DanConwayDev@protonmail.com> | 2025-11-11 12:30:00 +0000 |
|---|---|---|
| committer | DanConwayDev <DanConwayDev@protonmail.com> | 2025-11-13 14:55:50 +0000 |
| commit | ebab8d2aa487d1814e802c5a51b19d4bb1592e01 (patch) | |
| tree | 0b0e8e0b179ac365da9182a01f2a7b26929d7dba /src/bin/git_remote_nostr/list.rs | |
| parent | 65f3bd360c065aca493eddf7eb5d3d8191a84b56 (diff) | |
refactor: simplify get_short_git_server_name
so it doesnt use the git_repo
Diffstat (limited to 'src/bin/git_remote_nostr/list.rs')
| -rw-r--r-- | src/bin/git_remote_nostr/list.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/git_remote_nostr/list.rs b/src/bin/git_remote_nostr/list.rs index 934160a..d06d202 100644 --- a/src/bin/git_remote_nostr/list.rs +++ b/src/bin/git_remote_nostr/list.rs | |||
| @@ -39,7 +39,7 @@ pub async fn run_list( | |||
| 39 | let remote_issues = identify_remote_sync_issues(git_repo, &nostr_state, &remote_states); | 39 | let remote_issues = identify_remote_sync_issues(git_repo, &nostr_state, &remote_states); |
| 40 | 40 | ||
| 41 | // Generate and print warnings | 41 | // Generate and print warnings |
| 42 | let warnings = generate_remote_sync_warnings(git_repo, &remote_issues, &remote_states); | 42 | let warnings = generate_remote_sync_warnings(&remote_issues, &remote_states); |
| 43 | for warning in warnings { | 43 | for warning in warnings { |
| 44 | term.write_line(&warning)?; | 44 | term.write_line(&warning)?; |
| 45 | } | 45 | } |