diff options
Diffstat (limited to 'connector')
-rw-r--r-- | connector/mattermost/mattermost.go | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/connector/mattermost/mattermost.go b/connector/mattermost/mattermost.go index ab612ba..922a3ae 100644 --- a/connector/mattermost/mattermost.go +++ b/connector/mattermost/mattermost.go @@ -321,8 +321,8 @@ func (mm *Mattermost) handleConnected() { t.Team.LastTeamIconUpdate), GetFn: func(o *LazyBlobMediaObject) error { team_img, resp := mm.conn.Client.GetTeamIcon(t.Id, "") - if resp.Error == nil { - log.Warnf("Could not get team image: %s", resp.Error) + if resp.Error != nil { + log.Warnf("Could not get team image: %s", resp.Error.Error()) return resp.Error } o.ObjectData = team_img @@ -353,7 +353,7 @@ func (mm *Mattermost) handleConnected() { } } } else { - log.Warnf("Could not get channel members: %s", resp.Error) + log.Warnf("Could not get channel members: %s", resp.Error.Error()) } // Read backlog @@ -411,8 +411,8 @@ func (mm *Mattermost) updateUserInfo(user *model.User) { user.LastPictureUpdate), GetFn: func(o *LazyBlobMediaObject) error { img, resp := mm.conn.Client.GetProfileImage(user.Id, "") - if resp.Error == nil { - log.Warnf("Could not get profile picture: %s", resp.Error) + if resp.Error != nil { + log.Warnf("Could not get profile picture: %s", resp.Error.Error()) return resp.Error } o.ObjectData = img |