mirror of
https://codeberg.org/keyoxide/keyoxide-web.git
synced 2024-12-22 23:09:29 -07:00
Fix QR URI
This commit is contained in:
parent
8c5bf4b7e4
commit
b04a3f8b22
1 changed files with 1 additions and 1 deletions
|
@ -818,7 +818,7 @@ if (elUtilQR) {
|
||||||
|
|
||||||
elInput.addEventListener("input", async function(evt) {
|
elInput.addEventListener("input", async function(evt) {
|
||||||
if (evt.target.value) {
|
if (evt.target.value) {
|
||||||
qrcode.makeCode(evt.target.value);
|
qrcode.makeCode(`OPENPGP4FPR:${evt.target.value}`);
|
||||||
} else {
|
} else {
|
||||||
qrcode.clear();
|
qrcode.clear();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue