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 | 81bfc7ac9f7e843cdbd248c7f6de30abd4d2a831 (patch) | |
tree | 90ca85661202e7d9e08565f7ccef3c6f9f77fa22 /core/s2smanager.lua | |
parent | 1ebb493e38272e46fc99f56e171718f09b255b02 (diff) | |
download | prosody-81bfc7ac9f7e843cdbd248c7f6de30abd4d2a831.tar.gz prosody-81bfc7ac9f7e843cdbd248c7f6de30abd4d2a831.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; |