mirror of
https://codeberg.org/keyoxide/keyoxide-web.git
synced 2024-12-22 23:09:29 -07:00
Fixed fingerprint url with undefined keyData.fingerprint value.
This commit is contained in:
parent
ffca9b54fd
commit
6065812df3
1 changed files with 2 additions and 2 deletions
|
@ -282,12 +282,12 @@ async function displayProfile(opts) {
|
|||
}
|
||||
}
|
||||
if (!keyLink) {
|
||||
keyLink = `https://keys.openpgp.org/pks/lookup?op=get&options=mr&search=0x${keyData.fingerprint}`;
|
||||
keyLink = `https://keys.openpgp.org/pks/lookup?op=get&options=mr&search=0x${fingerprint}`;
|
||||
}
|
||||
break;
|
||||
|
||||
case "hkp":
|
||||
keyLink = `https://keys.openpgp.org/pks/lookup?op=get&options=mr&search=0x${keyData.fingerprint}`;
|
||||
keyLink = `https://keys.openpgp.org/pks/lookup?op=get&options=mr&search=0x${fingerprint}`;
|
||||
break;
|
||||
|
||||
case "keybase":
|
||||
|
|
Loading…
Reference in a new issue