From 17cc14a9d2351fcd0608c2a81eb32fd9fc3ec987 Mon Sep 17 00:00:00 2001 From: Wim Date: Tue, 2 Apr 2019 00:15:58 +0200 Subject: Send user_added and removed event through message channel (mattermost) --- matterclient/channels.go | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'matterclient/channels.go') diff --git a/matterclient/channels.go b/matterclient/channels.go index 568a20eb..0eac29f8 100644 --- a/matterclient/channels.go +++ b/matterclient/channels.go @@ -51,10 +51,8 @@ func (m *MMClient) GetChannelId(name string, teamId string) string { //nolint:go if res == name { return channel.Id } - } else { - if channel.Name == name { - return channel.Id - } + } else if channel.Name == name { + return channel.Id } } } -- cgit v1.2.3