mirror of
https://codeberg.org/keyoxide/keyoxide-web.git
synced 2024-12-22 14:59:29 -07:00
Merge pull request 'Fixed fingerprint url with undefined keyData.fingerprint value.' (#60) from KiddyTheKid/web:fix-undefined-url-search-parameter into dev
Reviewed-on: https://codeberg.org/keyoxide/web/pulls/60
This commit is contained in:
commit
68328f0ed4
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