Răsfoiți Sursa

Hide reconnected successfully message if report_connection_retry is false

Tulir Asokan 5 ani în urmă
părinte
comite
7947ba616c
1 a modificat fișierele cu 3 adăugiri și 1 ștergeri
  1. 3 1
      user.go

+ 3 - 1
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" {