diff options
author | Matthew Wild <mwild1@gmail.com> | 2009-04-20 03:03:07 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2009-04-20 03:03:07 +0100 |
commit | dabd9b0b5364630a603daecd3261d45999eff3c7 (patch) | |
tree | dc7e3765689e50d37e541743d7e88ba9f0144b0d /core/componentmanager.lua | |
parent | f0a842ae4bcf5b7d09a08b65275e4b828838cfe5 (diff) | |
parent | cface37b4928e922a43ef37d1bc49ab3a4009479 (diff) | |
download | prosody-dabd9b0b5364630a603daecd3261d45999eff3c7.tar.gz prosody-dabd9b0b5364630a603daecd3261d45999eff3c7.zip |
Merging stable into unstable
Diffstat (limited to 'core/componentmanager.lua')
-rw-r--r-- | core/componentmanager.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/core/componentmanager.lua b/core/componentmanager.lua index 308dea57..96b78bf2 100644 --- a/core/componentmanager.lua +++ b/core/componentmanager.lua @@ -104,6 +104,7 @@ end function deregister_component(host) if components[host] then modulemanager.unload(host, "dialback"); + host.connected = nil; local host_config = configmanager.getconfig()[host]; if host_config and ((host_config.core.enabled == nil or host_config.core.enabled) and type(host_config.core.component_module) == "string") then -- Set default handler |