Revert "Logging the config in the error to debug CI"

This reverts commit 9d8dfcabcf.
This commit is contained in:
Brian Meek 2023-02-07 17:14:16 -08:00
parent 7df85cde1d
commit 04d272d32a

View file

@ -119,7 +119,7 @@ func (pk LoginPublicKeyEthereum) ValidateLoginResponse() (bool, *jsonerror.Matri
// Check signature to verify message was not tempered
_, err = message.Verify(pk.Signature, (*string)(&pk.config.Matrix.ServerName), nil, nil)
if err != nil {
return false, jsonerror.InvalidSignature(err.Error() + " " + pk.Signature + " " + string(pk.config.Matrix.ServerName))
return false, jsonerror.InvalidSignature(err.Error())
}
// Error if the user ID does not match the signed message.