Fix incorrect escaping of QR code secrets

This commit is contained in:
Raphael Michel
2022-05-13 16:36:32 +02:00
parent e1c6103dc4
commit 750a2511d5

View File

@@ -918,7 +918,7 @@ $(function () {
height: 196
}
);
$div.append($(this).attr("data-qrcode").slice(0, 10) + "…<br>");
$div.append($("<div>").text($(this).attr("data-qrcode").slice(0, 10)).get(0).innerHTML + "…<br>");
$div.append(gettext("Click to close"));
$div.slideDown(200);
$div.click(function (e) {