core.modulemanager: Disable mod_vcard if mod_vcard_legacy is enabled to prevent conflict (#1469)

This commit is contained in:
Kim Alvefur 2019-11-23 23:11:03 +01:00
parent d76bbecd01
commit a2aa11f3ae

View file

@ -63,6 +63,11 @@ local function get_modules_for_host(host)
modules:add("admin_telnet");
end
if modules:contains("vcard") and modules:contains("vcard_legacy") then
log("error", "The mod_vcard_legacy plugin replaces mod_vcard but both are enabled. Please update your config.");
modules:remove("vcard");
end
return modules, component;
end