mirror of
https://github.com/bjc/prosody.git
synced 2025-04-05 14:17:37 +03:00
moduleapi: module:provides(): Fix usage of wrong table
This commit is contained in:
parent
c065013ced
commit
5b5c8c83b3
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue