From 218092d2e9377539f0c2cadbae8fcdd518b06765 Mon Sep 17 00:00:00 2001 From: Jessie Hildebrandt Date: Tue, 21 Dec 2021 01:41:57 -0500 Subject: [PATCH] Change QR printing format to UTF8 for compat. --- src/modules/auth_utils.fnl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/auth_utils.fnl b/src/modules/auth_utils.fnl index 6f95d39..3afc82e 100644 --- a/src/modules/auth_utils.fnl +++ b/src/modules/auth_utils.fnl @@ -36,7 +36,7 @@ Compares `password` to the current valid TOTP (generated with config.auth_secret (let [totp_url (totp:get_url "simple-shortener" "User") qr (qrprinter.encode_string totp_url)] (print "TOTP configuration:") - (qrprinter.print_qr qr))) + (qrprinter.print_qr_utf8 qr))) ;; -------------------------------------------------------------------------- ;; ;; Return module