Browse Source

fix: auth token bug (#1762)

Tank 5 years ago
parent
commit
5a61fd84ad
1 changed files with 1 additions and 1 deletions
  1. 1 1
      models/auth/token.go

+ 1 - 1
models/auth/token.go

@@ -81,7 +81,7 @@ func (auth *TokenAuthSetterVerifier) SetPing(pingMsg *msg.Ping) error {
 }
 
 func (auth *TokenAuthSetterVerifier) SetNewWorkConn(newWorkConnMsg *msg.NewWorkConn) error {
-	if !auth.AuthenticateHeartBeats {
+	if !auth.AuthenticateNewWorkConns {
 		return nil
 	}