summaryrefslogtreecommitdiffstats
path: root/model
diff options
context:
space:
mode:
Diffstat (limited to 'model')
-rw-r--r--model/client4.go5
1 files changed, 4 insertions, 1 deletions
diff --git a/model/client4.go b/model/client4.go
index 3bd3b2125..a7ee3df86 100644
--- a/model/client4.go
+++ b/model/client4.go
@@ -2808,7 +2808,10 @@ func (c *Client4) ListCommands(teamId string, customOnly bool) ([]*Command, *Res
// ExecuteCommand executes a given command.
func (c *Client4) ExecuteCommand(channelId, command string) (*CommandResponse, *Response) {
- commandArgs := &CommandArgs{ChannelId: channelId, Command: command}
+ commandArgs := &CommandArgs{
+ ChannelId: channelId,
+ Command: command,
+ }
if r, err := c.DoApiPost(c.GetCommandsRoute()+"/execute", commandArgs.ToJson()); err != nil {
return nil, BuildErrorResponse(r, err)
} else {