From d7552b43cd48abe85f5b8c631cdb4a828f3f9c32 Mon Sep 17 00:00:00 2001 From: Alex Auvolat Date: Fri, 21 Feb 2020 19:50:55 +0100 Subject: Fix fetching room/user pictures --- connector/mattermost/mattermost.go | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'connector') 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 -- cgit v1.2.3