summaryrefslogtreecommitdiffstats
path: root/api/command_echo.go
diff options
context:
space:
mode:
Diffstat (limited to 'api/command_echo.go')
-rw-r--r--api/command_echo.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/api/command_echo.go b/api/command_echo.go
index 805db7ad2..5caa41759 100644
--- a/api/command_echo.go
+++ b/api/command_echo.go
@@ -77,10 +77,11 @@ func (me *EchoProvider) DoCommand(c *Context, channelId string, message string)
post := &model.Post{}
post.ChannelId = channelId
post.Message = message
+ post.UserId = c.Session.UserId
time.Sleep(time.Duration(delay) * time.Second)
- if _, err := CreatePost(c, post, true); err != nil {
+ if _, err := CreatePost(c.TeamId, post, true); err != nil {
l4g.Error(c.T("api.command_echo.create.app_error"), err)
}
}()