mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
core.modulemanager: Disable mod_vcard if mod_vcard_legacy is enabled to prevent conflict (#1469)
This commit is contained in:
parent
d76bbecd01
commit
a2aa11f3ae
1 changed files with 5 additions and 0 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue