diff options
Diffstat (limited to 'src')
| -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 2f2977e..92faa6b 100644 --- a/src/bin/git_remote_nostr/list.rs +++ b/src/bin/git_remote_nostr/list.rs | |||
| @@ -150,7 +150,7 @@ async fn get_open_proposals_state( | |||
| 150 | if let Ok(mut branch_name) = cl.get_branch_name() { | 150 | if let Ok(mut branch_name) = cl.get_branch_name() { |
| 151 | branch_name = if let Some(public_key) = current_user { | 151 | branch_name = if let Some(public_key) = current_user { |
| 152 | if proposal.pubkey.eq(&public_key) { | 152 | if proposal.pubkey.eq(&public_key) { |
| 153 | cl.branch_name.to_string() | 153 | format!("pr/{}", cl.branch_name) |
| 154 | } else { | 154 | } else { |
| 155 | branch_name | 155 | branch_name |
| 156 | } | 156 | } |