diff options
Diffstat (limited to 'src/bin/ngit/sub_commands/issue_status.rs')
| -rw-r--r-- | src/bin/ngit/sub_commands/issue_status.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bin/ngit/sub_commands/issue_status.rs b/src/bin/ngit/sub_commands/issue_status.rs index 840ab8e..99b4fa6 100644 --- a/src/bin/ngit/sub_commands/issue_status.rs +++ b/src/bin/ngit/sub_commands/issue_status.rs | |||
| @@ -183,8 +183,8 @@ pub async fn launch_close(id: &str, offline: bool, reason: Option<&str>) -> Resu | |||
| 183 | launch_status(id, offline, Kind::GitStatusClosed, "closed", reason).await | 183 | launch_status(id, offline, Kind::GitStatusClosed, "closed", reason).await |
| 184 | } | 184 | } |
| 185 | 185 | ||
| 186 | pub async fn launch_reopen(id: &str, offline: bool) -> Result<()> { | 186 | pub async fn launch_reopen(id: &str, offline: bool, reason: Option<&str>) -> Result<()> { |
| 187 | launch_status(id, offline, Kind::GitStatusOpen, "reopened", None).await | 187 | launch_status(id, offline, Kind::GitStatusOpen, "reopened", reason).await |
| 188 | } | 188 | } |
| 189 | 189 | ||
| 190 | pub async fn launch_resolved(id: &str, offline: bool, reason: Option<&str>) -> Result<()> { | 190 | pub async fn launch_resolved(id: &str, offline: bool, reason: Option<&str>) -> Result<()> { |