Possible fix for usernames containing "." (#9833)

This commit is contained in:
Manuel Ceroni 2025-11-25 12:46:39 +01:00 committed by GitHub
parent 2551141c66
commit 2b8d3b79a7
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -82,7 +82,7 @@ local num = 0
for _key, _value in pairsByValues(vals, funct) do
local key = _key
local value = users_list[_key]
local js_key = _key:gsub("%.", "\\\\\\\\.")
local js_key = key--_key:gsub("%.", "\\\\\\\\.")
local id_key = _key:gsub("%.", "")
id_key = id_key:gsub("@", "")