summaryrefslogtreecommitdiffstats
path: root/bridge/mattermost
diff options
context:
space:
mode:
authorWim <wim@42.be>2017-07-14 00:35:01 +0200
committerWim <wim@42.be>2017-07-14 00:35:01 +0200
commit6dee988b76852c6b15ef59061896ce48ce6ba978 (patch)
treeb2a187be4850e212400bb9627e60327c63370b30 /bridge/mattermost
parent5af40db3965649348143a530bea671574fb1ef54 (diff)
downloadmatterbridge-msglm-6dee988b76852c6b15ef59061896ce48ce6ba978.tar.gz
matterbridge-msglm-6dee988b76852c6b15ef59061896ce48ce6ba978.tar.bz2
matterbridge-msglm-6dee988b76852c6b15ef59061896ce48ce6ba978.zip
Fix megacheck / go vet issues
Diffstat (limited to 'bridge/mattermost')
-rw-r--r--bridge/mattermost/mattermost.go6
1 files changed, 2 insertions, 4 deletions
diff --git a/bridge/mattermost/mattermost.go b/bridge/mattermost/mattermost.go
index 222522ee..d4258345 100644
--- a/bridge/mattermost/mattermost.go
+++ b/bridge/mattermost/mattermost.go
@@ -12,9 +12,8 @@ type MMhook struct {
}
type MMapi struct {
- mc *matterclient.MMClient
- mmMap map[string]string
- mmIgnoreNicks []string
+ mc *matterclient.MMClient
+ mmMap map[string]string
}
type MMMessage struct {
@@ -29,7 +28,6 @@ type Bmattermost struct {
MMapi
Config *config.Protocol
Remote chan config.Message
- name string
TeamId string
Account string
}