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:
Kim Alvefur 2020-10-11 14:27:28 +02:00
parent c5933e9ed7
commit bb3948c857

View file

@ -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 = {};