prosodyctl: stop: Fix detection of whether Prosody is running

This commit is contained in:
Matthew Wild 2025-02-06 14:35:29 +00:00
parent b3d9577ceb
commit 60460d4d22

View file

@ -303,7 +303,11 @@ function commands.stop(arg)
service_command_warning("stop");
if not prosodyctl.isrunning() then
local ok, running = prosodyctl.isrunning();
if not ok then
show_message(error_messages[running]);
return 1;
elseif not running then
show_message("Prosody is not running");
return 1;
end