Skip to content

Commit

Permalink
Fix bug with reloadAll() and hidden modules
Browse files Browse the repository at this point in the history
  • Loading branch information
Robert McLay committed Nov 24, 2024
1 parent 4c19e7f commit 8edf167
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/MT.lua
Original file line number Diff line number Diff line change
Expand Up @@ -417,7 +417,7 @@ function M.exists(self, sn, fullName)
if (entry == nil) then
return false
end
return (fullName == nil) or entry.fullName == fullName
return (fullName == nil) or (entry.status ~= "inactive" and entry.fullName == fullName)
end

function M.moduleKindT(self, sn)
Expand Down

0 comments on commit 8edf167

Please sign in to comment.