Skip to content

Commit 9fa62ea

Browse files
committed
fix(cache): dont keep invalid entries in the cache (cleanup)
1 parent d3a963d commit 9fa62ea

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

lua/lazy/core/cache.lua

+8-3
Original file line numberDiff line numberDiff line change
@@ -144,9 +144,14 @@ function M.loader(modname)
144144
local entry = M.cache[modname]
145145

146146
local chunk, err
147-
if entry and M.check_path(modname, entry.modpath) then
148-
M.stats.find.total = M.stats.find.total + 1
149-
chunk, err = M.load(modname, entry.modpath)
147+
if entry then
148+
if M.check_path(modname, entry.modpath) then
149+
M.stats.find.total = M.stats.find.total + 1
150+
chunk, err = M.load(modname, entry.modpath)
151+
else
152+
M.cache[modname] = nil
153+
M.dirty = true
154+
end
150155
end
151156
if not chunk then
152157
-- find the modpath and load the module

0 commit comments

Comments
 (0)