Removed system message on /msg success (#3579)

This commit is contained in:
David Lu
2016-07-14 08:17:24 -04:00
committed by Joram Wilander
parent 4c8ba1f5a2
commit 2e7e0d09b8
2 changed files with 2 additions and 2 deletions

View File

@@ -88,7 +88,7 @@ func (me *msgProvider) DoCommand(c *Context, channelId string, message string) *
}
}
return &model.CommandResponse{GotoLocation: c.GetTeamURL() + "/channels/" + channelName, Text: c.T("api.command_msg.success"), ResponseType: model.COMMAND_RESPONSE_TYPE_EPHEMERAL}
return &model.CommandResponse{GotoLocation: c.GetTeamURL() + "/channels/" + channelName, Text: "", ResponseType: model.COMMAND_RESPONSE_TYPE_EPHEMERAL}
}
}
}