mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
core.modulemanager: Fix error if installer path missing
Happens if run outside prosody. Noticed because because the storage tests fail.
This commit is contained in:
parent
c5933e9ed7
commit
bb3948c857
1 changed files with 1 additions and 1 deletions
|
@ -199,7 +199,7 @@ local function do_load_module(host, module_name, state)
|
|||
api_instance.path = err;
|
||||
|
||||
local custom_plugins = prosody.paths.installer;
|
||||
if err:sub(1, #custom_plugins+1) == custom_plugins.."/" then
|
||||
if custom_plugins and err:sub(1, #custom_plugins+1) == custom_plugins.."/" then
|
||||
-- Stage 1: Make it work (you are here)
|
||||
-- Stage 2: Make it less hacky (TODO)
|
||||
local manifest = {};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue