Skip to content

Commit

Permalink
Encourage use of https in error message for cmd.cpp
Browse files Browse the repository at this point in the history
Signed-off-by: Claudio Cambra <[email protected]>
  • Loading branch information
claucambra committed Oct 9, 2024
1 parent a43ead1 commit 9a15a43
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cmd/cmd.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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:[email protected]" << std::endl;
<< "https://username:[email protected]" << std::endl;
return EXIT_FAILURE;
}

Expand Down

0 comments on commit 9a15a43

Please sign in to comment.