Skip to content

Commit 12f2c74

Browse files
committed
fix(loader): explicitely set package.loaded.modname to nil to prevent recursive loading errors
1 parent 34b0126 commit 12f2c74

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

lua/lazy/core/loader.lua

+2
Original file line numberDiff line numberDiff line change
@@ -552,6 +552,8 @@ function M.loader(modname)
552552
end
553553

554554
if ret then
555+
-- explicitly set to nil to prevent loading errors
556+
package.loaded[modname] = nil
555557
M.auto_load(modname, ret.modpath)
556558
local mod = package.loaded[modname]
557559
if type(mod) == "table" then

0 commit comments

Comments
 (0)