diff options
Diffstat (limited to 'src/sub_commands/push.rs')
| -rw-r--r-- | src/sub_commands/push.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/sub_commands/push.rs b/src/sub_commands/push.rs index bb50ee2..fefe102 100644 --- a/src/sub_commands/push.rs +++ b/src/sub_commands/push.rs | |||
| @@ -108,7 +108,7 @@ pub async fn launch(cli_args: &Cli, args: &SubCommandArgs) -> Result<()> { | |||
| 108 | cli_args, | 108 | cli_args, |
| 109 | &sub_commands::send::SubCommandArgs { | 109 | &sub_commands::send::SubCommandArgs { |
| 110 | since_or_range: String::new(), | 110 | since_or_range: String::new(), |
| 111 | in_reply_to: Some(proposal_root_event.id.to_string()), | 111 | in_reply_to: vec![proposal_root_event.id.to_string()], |
| 112 | title: None, | 112 | title: None, |
| 113 | description: None, | 113 | description: None, |
| 114 | no_cover_letter: args.no_cover_letter, | 114 | no_cover_letter: args.no_cover_letter, |
| @@ -166,6 +166,7 @@ pub async fn launch(cli_args: &Cli, args: &SubCommandArgs) -> Result<()> { | |||
| 166 | None, | 166 | None, |
| 167 | None, | 167 | None, |
| 168 | &None, | 168 | &None, |
| 169 | &[], | ||
| 169 | ) | 170 | ) |
| 170 | .context("cannot make patch event from commit")?, | 171 | .context("cannot make patch event from commit")?, |
| 171 | ); | 172 | ); |