mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
moduleapi: Support stripping of multi-word from module names
The goal is to allow module:provides("foo-bar") with a mod_foo_bar_ prefix being stripped. It will break any existing modules that use a prefix and have hyphens instead of underscores. No such modules are known.
This commit is contained in:
parent
6671cc037e
commit
bd455426f6
1 changed files with 1 additions and 1 deletions
|
@ -355,7 +355,7 @@ function api:provides(name, item)
|
|||
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
|
||||
if item_name:find((name:gsub("%-", "_")).."_", 1, true) == 1 then
|
||||
item_name = item_name:sub(#name+2);
|
||||
end
|
||||
item.name = item_name;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue