Force uppercase for qr links (spec)

This commit is contained in:
Yarmo Mackenbach 2020-07-03 09:26:07 +02:00
parent 6a63284c65
commit 16d84b3b5f

View file

@ -822,7 +822,7 @@ if (elUtilQR) {
elInput.addEventListener("input", async function(evt) {
if (evt.target.value) {
qrcode.makeCode(`OPENPGP4FPR:${evt.target.value}`);
qrcode.makeCode(`OPENPGP4FPR:${evt.target.value.toUpperCase}`);
} else {
qrcode.clear();
}