Hide reconnected successfully message if report_connection_retry is false
This commit is contained in:
parent
e2261b80b6
commit
7947ba616c
1 changed files with 3 additions and 1 deletions
4
user.go
4
user.go
|
@ -597,7 +597,9 @@ func (user *User) tryReconnect(msg string) {
|
|||
err := user.Conn.Restore()
|
||||
if err == nil {
|
||||
user.ConnectionErrors = 0
|
||||
_, _ = user.bridge.Bot.SendNotice(user.GetManagementRoom(), "Reconnected successfully")
|
||||
if user.bridge.Config.Bridge.ReportConnectionRetry {
|
||||
_, _ = user.bridge.Bot.SendNotice(user.GetManagementRoom(), "Reconnected successfully")
|
||||
}
|
||||
user.PostLogin()
|
||||
return
|
||||
} else if err.Error() == "init responded with 400" {
|
||||
|
|
Loading…
Reference in a new issue