2
0
mirror of https://github.com/status-im/matterbridge.git synced 2025-02-18 00:46:44 +00:00

Add Id to EditMessage (mattermost). Fixes

This commit is contained in:
Wim 2019-04-19 22:59:04 +02:00
parent 2d277a15f5
commit 8ad2be10b2

@ -83,7 +83,7 @@ func (m *MMClient) DeleteMessage(postId string) error { //nolint:golint
}
func (m *MMClient) EditMessage(postId string, text string) (string, error) { //nolint:golint
post := &model.Post{Message: text}
post := &model.Post{Message: text, Id: postId}
res, resp := m.Client.UpdatePost(postId, post)
if resp.Error != nil {
return "", resp.Error