mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 05:07:42 +03:00
util.pluginloader: Fix method to return any module metadata (luacheck)
This commit is contained in:
parent
61d33dd364
commit
018c618a3f
1 changed files with 1 additions and 1 deletions
|
@ -82,7 +82,7 @@ function pluginloader_methods:load_code_ext(plugin, resource, extension, env)
|
|||
local path = err;
|
||||
local f, err = envload(content, "@"..path, env);
|
||||
if not f then return f, err; end
|
||||
return f, path;
|
||||
return f, path, metadata;
|
||||
end
|
||||
|
||||
local function init(options)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue