Fix GPG subkey verify (#30193)

Fixes #30189

Can't verify subkeys if they are not loaded.
This commit is contained in:
KN4CK3R 2024-03-31 04:35:19 +02:00 committed by GitHub
parent 7eb3ab0765
commit 82ffd91607
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 4 additions and 0 deletions

View File

@ -46,6 +46,10 @@ func VerifyGPGKey(ctx context.Context, ownerID int64, keyID, token, signature st
return "", ErrGPGKeyNotExist{}
}
if err := key.LoadSubKeys(ctx); err != nil {
return "", err
}
sig, err := extractSignature(signature)
if err != nil {
return "", ErrGPGInvalidTokenSignature{