Revert "fix(main): update clap args to fix invalidvalue check"

This reverts commit b51a7a346d.
This commit is contained in:
Tokarak 2024-10-20 15:24:21 +01:00
parent b51a7a346d
commit 78aa92a171

View file

@ -161,7 +161,8 @@ async fn main() {
.arg(
Arg::new("no-https-verification")
.long("no-https-verification")
.help("Disables HTTPS certificate verification between the instance and reddit. This can be useful to debug the HTTPS connection with an HTTPS sniffer. Only works when the 'no-https-verification' feature is enabled at compile time."),
.help("Disables HTTPS certificate verification between the instance and reddit. This can be useful to debug the HTTPS connection with an HTTPS sniffer. Only works when the 'no-https-verification' feature is enabled at compile time.")
.num_args(0),
);
let matches = cmd.get_matches_mut();