mirror of
https://codeberg.org/PGPainless/cert-d-pgpainless.git
synced 2024-11-13 03:22:05 +01:00
Fix typo
This commit is contained in:
parent
27ae686d52
commit
d8a060d0df
1 changed files with 4 additions and 4 deletions
|
@ -34,16 +34,16 @@ public class Get implements Runnable {
|
|||
paramLabel = "IDENTIFIER",
|
||||
arity = "1"
|
||||
)
|
||||
String identifer;
|
||||
String identifier;
|
||||
|
||||
@Override
|
||||
public void run() {
|
||||
try {
|
||||
KeyMaterial record;
|
||||
if (SpecialNames.lookupSpecialName(identifer) != null) {
|
||||
record = PGPCertDCli.getCertificateDirectory().getBySpecialName(identifer);
|
||||
if (SpecialNames.lookupSpecialName(identifier) != null) {
|
||||
record = PGPCertDCli.getCertificateDirectory().getBySpecialName(identifier);
|
||||
} else {
|
||||
record = PGPCertDCli.getCertificateDirectory().getByFingerprint(identifer.toLowerCase());
|
||||
record = PGPCertDCli.getCertificateDirectory().getByFingerprint(identifier.toLowerCase());
|
||||
}
|
||||
if (record == null) {
|
||||
return;
|
||||
|
|
Loading…
Reference in a new issue