mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.pluginloader: Look for module libs in mod_plugin/lib.lua
Luarocks can't be told to install something as foo.lib.lua AFAIK, so instead let's try mod_bar/foo.lua
This commit is contained in:
parent
19549a6976
commit
0113f59de0
1 changed files with 3 additions and 0 deletions
|
@ -60,6 +60,9 @@ end
|
|||
|
||||
local function load_code_ext(plugin, resource, extension, env)
|
||||
local content, err = load_resource(plugin, resource.."."..extension);
|
||||
if not content and extension == "lib.lua" then
|
||||
content, err = load_resource(plugin, resource..".lua");
|
||||
end
|
||||
if not content then
|
||||
content, err = load_resource(resource, resource.."."..extension);
|
||||
if not content then
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue