From fc2fb02923ff07dd221e0992da45e839e84ff300 Mon Sep 17 00:00:00 2001 From: Claudio Cambra Date: Wed, 9 Oct 2024 09:46:30 +0800 Subject: [PATCH] Encourage use of https in error message for cmd.cpp Signed-off-by: Claudio Cambra --- src/cmd/cmd.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cmd/cmd.cpp b/src/cmd/cmd.cpp index c1f71ae8c..b770c3796 100644 --- a/src/cmd/cmd.cpp +++ b/src/cmd/cmd.cpp @@ -347,7 +347,7 @@ int main(int argc, char **argv) if (options.target_url.contains("/webdav", Qt::CaseInsensitive) || options.target_url.contains("/dav", Qt::CaseInsensitive)) { qWarning("Dav or webdav in server URL."); std::cerr << "Error! Please specify only the base URL of your host with username and password. Example:" << std::endl - << "http(s)://username:password@cloud.example.com" << std::endl; + << "https://username:password@cloud.example.com" << std::endl; return EXIT_FAILURE; }