We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4e3a973 commit b8c5ab5Copy full SHA for b8c5ab5
lua/lazy/core/cache.lua
@@ -158,7 +158,10 @@ function M.load(modkey, modpath)
158
entry.used = os.time()
159
if M.eq(entry.hash, hash) then
160
-- found in cache and up to date
161
- return loadstring(entry.chunk --[[@as string]], "@" .. entry.modpath)
+ local chunk, err = loadstring(entry.chunk --[[@as string]], "@" .. entry.modpath)
162
+ if not (err and err:find("cannot load incompatible bytecode", 1, true)) then
163
+ return chunk, err
164
+ end
165
end
166
else
167
entry = { hash = hash, modpath = modpath, used = os.time() }
0 commit comments