diff options
author | Matthew Wild <mwild1@gmail.com> | 2012-04-23 14:09:35 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2012-04-23 14:09:35 +0100 |
commit | 5f18da1e08389a8159b8ce826aab67b035b00559 (patch) | |
tree | ace6f47c41ab0923d01def5edede84a117d32732 | |
parent | 608d074ba071a82cb409eb5a8b7aa5b5c4bd4eb4 (diff) | |
download | prosody-5f18da1e08389a8159b8ce826aab67b035b00559.tar.gz prosody-5f18da1e08389a8159b8ce826aab67b035b00559.zip |
moduleapi: module:provides(): Fix usage of wrong table
-rw-r--r-- | core/moduleapi.lua | 2 |
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 |