mirror of
https://github.com/YunoHost/SSOwat.git
synced 2024-09-03 20:06:27 +02:00
Update access.lua
This commit is contained in:
parent
8d53f1b366
commit
9bd01e9fb9
1 changed files with 1 additions and 1 deletions
|
@ -19,7 +19,7 @@ local conf = json.decode(conf_file:read("*all"))
|
|||
local persistent_conf_file = io.open(conf_path..".persistent", "r")
|
||||
if persistent_conf_file ~= nil then
|
||||
for k, v in pairs(json.decode(persistent_conf_file:read("*all"))) do
|
||||
-- If key already exists and is an table, merge it
|
||||
-- If key already exists and is a table, merge it
|
||||
if conf[k] and type(v) == "table" then
|
||||
for subk, subv in pairs(v) do
|
||||
if type(subk) == "number" then
|
||||
|
|
Loading…
Reference in a new issue