# HG changeset patch # User Matthew Wild # Date 1739792103 0 # Node ID 704765bfe0a35d12a4b7417d3b8dd91380dfb336 # Parent c51140dfbc4e7ea74403bd1c034cc52308d1262d prosodyctl: check features: Fix traceback for components with no recommended modules (thanks Menel, riau) diff -r c51140dfbc4e -r 704765bfe0a3 util/prosodyctl/check.lua --- a/util/prosodyctl/check.lua Mon Feb 17 00:55:27 2025 +0100 +++ b/util/prosodyctl/check.lua Mon Feb 17 11:35:03 2025 +0000 @@ -1613,21 +1613,23 @@ if found then local enabled_component_modules = api(found):get_option_inherited_set("modules_enabled"); local recommended_mods = recommended_component_modules[component_module]; - local missing_mods = {}; - for _, mod in ipairs(recommended_mods) do - if not enabled_component_modules:contains(mod) then - table.insert(missing_mods, mod); + if recommended_mods then + local missing_mods = {}; + for _, mod in ipairs(recommended_mods) do + if not enabled_component_modules:contains(mod) then + table.insert(missing_mods, mod); + end end - end - if #missing_mods > 0 then - if not current_feature.lacking_component_modules then - current_feature.lacking_component_modules = {}; + if #missing_mods > 0 then + if not current_feature.lacking_component_modules then + current_feature.lacking_component_modules = {}; + end + table.insert(current_feature.lacking_component_modules, { + host = found; + component_module = component_module; + missing_mods = missing_mods; + }); end - table.insert(current_feature.lacking_component_modules, { - host = found; - component_module = component_module; - missing_mods = missing_mods; - }); end end end