Skip to content

Commit

Permalink
refactor: use CommandText and ConsoleName in cmd handler
Browse files Browse the repository at this point in the history
Signed-off-by: Trae Yelovich <[email protected]>
  • Loading branch information
traeok committed Feb 4, 2025
1 parent 591e823 commit d0e82cd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion native/golang/issue.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ func HandleConsoleCommandRequest(jsonData []byte) {
if err != nil {
return
}
args := []string{"./zowexx", "console", "issue", request.Command, "--cn", request.Console}
args := []string{"./zowexx", "console", "issue", request.CommandText, "--cn", request.ConsoleName}
out, err := buildCommand(args).Output()
if err != nil {
log.Println("Error executing command:", err)
Expand Down

0 comments on commit d0e82cd

Please sign in to comment.