Skip to content

Commit

Permalink
fix error message
Browse files Browse the repository at this point in the history
  • Loading branch information
tibroc committed Dec 5, 2024
1 parent 927769c commit 2ba9f7b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion room-hub/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -365,7 +365,7 @@ func handleVerificationResponse(roomConn *websocket.Conn) bool {
err = json.Unmarshal(msg, &verificationCodeResponseMessage)
if err != nil || verificationCodeResponseMessage.Type != MessageTypeVerificationCodeResponse {
if verificationCodeResponseMessage.Type != MessageTypePing {
log.Printf("Error parsing VerificationCodeResponse: %s", err)
log.Printf("Error parsing VerificationCodeResponse: %s", msg)
}
continue
}
Expand Down

0 comments on commit 2ba9f7b

Please sign in to comment.