diff options
author | Matthew Wild <mwild1@gmail.com> | 2025-02-06 14:46:36 +0000 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2025-02-06 14:46:36 +0000 |
commit | 24d50902bd3ee7b5d75eb158ac5b3696df2b88c9 (patch) | |
tree | 4f5d50d63063b2f59343766c3712e8c253cce10a | |
parent | 3e23058a2d6453edd47838b6e9c24b4816ecc80c (diff) | |
download | prosody-24d50902bd3ee7b5d75eb158ac5b3696df2b88c9.tar.gz prosody-24d50902bd3ee7b5d75eb158ac5b3696df2b88c9.zip |
prosodyctl: Fix luacheck warning
-rwxr-xr-x | prosodyctl | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -316,7 +316,7 @@ function commands.stop(arg) if ok then local i=1; while true do - local ok, running = prosodyctl.isrunning(); + local ok, running = prosodyctl.isrunning(); --luacheck: ignore 421 if ok and not running then break; elseif i == 5 then |