aboutsummaryrefslogtreecommitdiffstats
path: root/core/modulemanager.lua
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2018-03-29 16:58:06 +0200
committerKim Alvefur <zash@zash.se>2018-03-29 16:58:06 +0200
commit36bdcaa99c41beece3985a80e9f4bbdfa86ef4c7 (patch)
treec0994da18bdaa499566223d829c33c0009ae32b0 /core/modulemanager.lua
parent8760f89c36fa2e16c730b267bcaee8999bdbd9b5 (diff)
downloadprosody-36bdcaa99c41beece3985a80e9f4bbdfa86ef4c7.tar.gz
prosody-36bdcaa99c41beece3985a80e9f4bbdfa86ef4c7.zip
core: Use prosody.hosts instead of _G.hosts for consistency
Diffstat (limited to 'core/modulemanager.lua')
-rw-r--r--core/modulemanager.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/modulemanager.lua b/core/modulemanager.lua
index c23043df..60af8d79 100644
--- a/core/modulemanager.lua
+++ b/core/modulemanager.lua
@@ -15,8 +15,8 @@ local set = require "util.set";
local new_multitable = require "util.multitable".new;
local api = require "core.moduleapi"; -- Module API container
-local hosts = hosts;
local prosody = prosody;
+local hosts = prosody.hosts;
local xpcall = xpcall;
local setmetatable, rawget = setmetatable, rawget;