aboutsummaryrefslogtreecommitdiffstats
path: root/core/moduleapi.lua
diff options
context:
space:
mode:
authorMatthew Wild <mwild1@gmail.com>2012-04-23 14:09:35 +0100
committerMatthew Wild <mwild1@gmail.com>2012-04-23 14:09:35 +0100
commit5b5c8c83b395e259924d28f14b65133bb9a5791c (patch)
treeace6f47c41ab0923d01def5edede84a117d32732 /core/moduleapi.lua
parentc065013cedb83885226e5870a34cf4c2add53450 (diff)
downloadprosody-5b5c8c83b395e259924d28f14b65133bb9a5791c.tar.gz
prosody-5b5c8c83b395e259924d28f14b65133bb9a5791c.zip
moduleapi: module:provides(): Fix usage of wrong table
Diffstat (limited to 'core/moduleapi.lua')
-rw-r--r--core/moduleapi.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/moduleapi.lua b/core/moduleapi.lua
index 7a3bd1c8..61926017 100644
--- a/core/moduleapi.lua
+++ b/core/moduleapi.lua
@@ -298,7 +298,7 @@ end
function api:provides(name, item)
if not item then item = self.environment; end
if not item.name then
- local item_name = module.name;
+ local item_name = self.name;
-- Strip a provider prefix to find the item name
-- (e.g. "auth_foo" -> "foo" for an auth provider)
if item_name:find(name.."_", 1, true) == 1 then