Merge pull request #11573 from NixOS/mergify/bp/2.21-maintenance/pr-11390

Don't refer to public keys as secret keys in error (backport #11390)
This commit is contained in:
John Ericson 2024-09-23 18:35:05 -04:00 committed by GitHub
commit a0b8f0f0f6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -22,7 +22,7 @@ Key::Key(std::string_view s)
key = ss.payload; key = ss.payload;
if (name == "" || key == "") if (name == "" || key == "")
throw Error("secret key is corrupt"); throw Error("key is corrupt");
key = base64Decode(key); key = base64Decode(key);
} }