From 4d6f056d7b1422ffdb9fa3592ce3493c2cee7d30 Mon Sep 17 00:00:00 2001 From: mxve <68632137+mxve@users.noreply.github.com> Date: Thu, 29 Feb 2024 10:33:31 +0100 Subject: [PATCH] use_https default true --- src/structs.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/structs.rs b/src/structs.rs index 86934aa..939b542 100644 --- a/src/structs.rs +++ b/src/structs.rs @@ -55,7 +55,7 @@ impl Default for Config { force_update: false, args: String::default(), engine: String::default(), - use_https: false, + use_https: true, } } }