fix: show signature when invalid
This commit is contained in:
parent
e316e1a840
commit
8b88d24250
1 changed files with 1 additions and 1 deletions
|
@ -109,7 +109,7 @@ where
|
|||
.verify(&user.public_key)
|
||||
{
|
||||
Ok(true) => identity = Identity::Remote(Context::server(&user_id)),
|
||||
Ok(false) => tracing::warn!("invalid signature"),
|
||||
Ok(false) => tracing::warn!("invalid signature: {http_signature:?}"),
|
||||
Err(e) => tracing::error!("error verifying signature: {e}"),
|
||||
},
|
||||
Err(e) => {
|
||||
|
|
Loading…
Reference in a new issue