mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
core.componentmanager: Fix global set, causing problems with multiple components. Fixes #82.
This commit is contained in:
parent
e9774621da
commit
e619e613a3
1 changed files with 1 additions and 1 deletions
|
@ -68,7 +68,7 @@ end
|
|||
|
||||
function create_component(host, component)
|
||||
-- TODO check for host well-formedness
|
||||
session = session or { type = "component", host = host, connected = true, s2sout = {}, send = component };
|
||||
local session = session or { type = "component", host = host, connected = true, s2sout = {}, send = component };
|
||||
return session;
|
||||
end
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue