fix(meta): when a plugin is both optional and disabled, then just delete it from the list

This commit is contained in:
Folke Lemaitre 2024-12-13 19:56:52 +01:00
parent 7c493713bc
commit 805b85c2ea
No known key found for this signature in database
GPG key ID: 41F8B1FBACAE2040

View file

@ -305,7 +305,11 @@ function M:fix_disabled()
for _, plugin in pairs(self.plugins) do
if plugin.enabled == false or (type(plugin.enabled) == "function" and not plugin.enabled()) then
changes = changes + 1
self:disable(plugin)
if plugin.optional then
self:del(plugin.name)
else
self:disable(plugin)
end
end
end
self:rebuild()