1
0
Fork 0
mirror of https://gitlab.com/futo-org/fcast.git synced 2025-08-08 02:02:49 +00:00

WebOS 22 and 6.0 collection of fixes

This commit is contained in:
Michael Hollister 2024-12-17 22:59:41 -06:00
parent 902ccff8bc
commit d57e1368b1
13 changed files with 228 additions and 36 deletions

View file

@ -43,8 +43,13 @@ function renderIPsAndQRCode() {
},
errorCorrectionLevel : "M",
},
(e) => {
console.log(`Error rendering QR Code: ${e}`)
(err) => {
if (err) {
console.error(`Error rendering QR Code: ${err}`);
}
else {
console.log(`Rendered QR Code`);
}
});
onQRCodeRendered();