From f7f794c5c665e2bbd40153076a3e0e4d1e45323d Mon Sep 17 00:00:00 2001 From: Matthew Wild Date: Sun, 16 Feb 2025 14:17:11 +0000 Subject: util.prosodyctl.check: Fix typo in informational message --- util/prosodyctl/check.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/util/prosodyctl/check.lua b/util/prosodyctl/check.lua index 1ea8d56d..c6b8a14b 100644 --- a/util/prosodyctl/check.lua +++ b/util/prosodyctl/check.lua @@ -1524,7 +1524,7 @@ local function check(arg) end end print(""); - print("", "", "If you have already configured any these components, they may not be"); + print("", "", "If you have already configured any of these components, they may not be"); print("", "", "linked correctly to "..host..". For more info see https://prosody.im/doc/components"); end if feature.lacking_component_modules then -- cgit v1.2.3 From 3ba87d07a971a388a40caf7eb45887c1c81766f9 Mon Sep 17 00:00:00 2001 From: Matthew Wild Date: Sun, 16 Feb 2025 14:19:16 +0000 Subject: util.prosodyctl.check: Recognise http_upload_external as a file upload service --- util/prosodyctl/check.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/util/prosodyctl/check.lua b/util/prosodyctl/check.lua index c6b8a14b..dc8c75f1 100644 --- a/util/prosodyctl/check.lua +++ b/util/prosodyctl/check.lua @@ -1702,7 +1702,7 @@ local function check(arg) { name = "File sharing"; check = function () - check_component("http_file_share", "http_upload"); + check_component("http_file_share", "http_upload", "http_upload_external"); end; }; { -- cgit v1.2.3