fix error in jsonls 'bad argument #1 to 'ipairs' (table expected, got nil)'
@ -169,7 +169,7 @@ local schemas = {
}
local function extend(tab1, tab2)
for _, value in ipairs(tab2) do
for _, value in ipairs(tab2 or {}) do
table.insert(tab1, value)
end
return tab1