util.pluginloader: Fix method to return any module metadata (luacheck)

This commit is contained in:
Matthew Wild 2022-02-04 15:04:20 +00:00
parent 61d33dd364
commit 018c618a3f

View file

@ -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)