diff options
author | Matthew Wild <mwild1@gmail.com> | 2013-03-22 14:50:29 +0000 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2013-03-22 14:50:29 +0000 |
commit | 5f6e150c615ad3e86b2d56aeebe0d8a329eba645 (patch) | |
tree | 90ca85661202e7d9e08565f7ccef3c6f9f77fa22 /core/s2smanager.lua | |
parent | 4ceaa9d2f2c9ee0fd0dfed102f214e533955a838 (diff) | |
download | prosody-5f6e150c615ad3e86b2d56aeebe0d8a329eba645.tar.gz prosody-5f6e150c615ad3e86b2d56aeebe0d8a329eba645.zip |
s2smanager: Access prosody.hosts instead of hosts global directly
Diffstat (limited to 'core/s2smanager.lua')
-rw-r--r-- | core/s2smanager.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/s2smanager.lua b/core/s2smanager.lua index b034fcae..a6e39705 100644 --- a/core/s2smanager.lua +++ b/core/s2smanager.lua @@ -8,7 +8,7 @@ -local hosts = hosts; +local hosts = prosody.hosts; local tostring, pairs, getmetatable, newproxy, setmetatable = tostring, pairs, getmetatable, newproxy, setmetatable; |