From 76b310d87390f9e764b72fcc711a5849ad53e4e9 Mon Sep 17 00:00:00 2001 From: Kan18 <24967425+Kan18@users.noreply.github.com> Date: Wed, 28 Dec 2022 19:22:20 +0400 Subject: [PATCH] oops --- sys/apps/genotp.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/apps/genotp.lua b/sys/apps/genotp.lua index e6bd5a1..9c1abb7 100644 --- a/sys/apps/genotp.lua +++ b/sys/apps/genotp.lua @@ -4,7 +4,7 @@ local acceptableCharacters = {} for c = 0, 127 do local char = string.char(c) -- exclude potentially ambiguous characters - if char:match("[1-9a-zA-Z]") and char:match("[^OIl]") end + if char:match("[1-9a-zA-Z]") and char:match("[^OIl]") then table.insert(acceptableCharacters, char) end end