Skip to content

Commit 6f15cb3

Browse files
committed
fix
1 parent 1eb1a9b commit 6f15cb3

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

script/library.lua

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -313,8 +313,10 @@ end
313313

314314
local function apply3rd(cfg, onlyMemory)
315315
local changes = {}
316-
for _, change in ipairs(cfg.configs) do
317-
changes[#changes+1] = change
316+
if cfg.configs then
317+
for _, change in ipairs(cfg.configs) do
318+
changes[#changes+1] = change
319+
end
318320
end
319321

320322
if cfg.plugin then

0 commit comments

Comments
 (0)