Fix mattermost API change for UpdateLastViewedAt

This commit is contained in:
Wim 2016-09-17 15:33:02 +02:00
parent ee77272cfd
commit f9e5994348
1 changed files with 1 additions and 1 deletions

View File

@ -422,7 +422,7 @@ func (m *MMClient) UpdateChannelHeader(channelId string, header string) {
func (m *MMClient) UpdateLastViewed(channelId string) { func (m *MMClient) UpdateLastViewed(channelId string) {
m.log.Debugf("posting lastview %#v", channelId) m.log.Debugf("posting lastview %#v", channelId)
_, err := m.Client.UpdateLastViewedAt(channelId) _, err := m.Client.UpdateLastViewedAt(channelId, true)
if err != nil { if err != nil {
m.log.Error(err) m.log.Error(err)
} }