summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--bridge/mattermost/mattermost.go1
-rw-r--r--matterclient/matterclient.go2
2 files changed, 3 insertions, 0 deletions
diff --git a/bridge/mattermost/mattermost.go b/bridge/mattermost/mattermost.go
index 439ce9c9..94b649bb 100644
--- a/bridge/mattermost/mattermost.go
+++ b/bridge/mattermost/mattermost.go
@@ -72,6 +72,7 @@ func (b *Bmattermost) Connect() error {
flog.Info("Connection succeeded")
b.TeamId = b.mc.GetTeamId()
go b.mc.WsReceiver()
+ go b.mc.StatusLoop()
}
go b.handleMatter()
return nil
diff --git a/matterclient/matterclient.go b/matterclient/matterclient.go
index d2bfbae7..bdd8cbc6 100644
--- a/matterclient/matterclient.go
+++ b/matterclient/matterclient.go
@@ -178,6 +178,7 @@ func (m *MMClient) Login() error {
}
b.Reset()
+ m.log.Debug("WsClient: connected")
m.WsSequence = 1
m.WsPingChan = make(chan *model.WebSocketResponse)
// only start to parse WS messages when login is completely done
@@ -630,6 +631,7 @@ func (m *MMClient) StatusLoop() {
m.Logout()
m.WsQuit = false
m.Login()
+ go m.WsReceiver()
}
}
time.Sleep(time.Second * 60)