From ef3684025b38c54768ed09b13fd045a4a09b4d1e Mon Sep 17 00:00:00 2001 From: Simone Mosciatti Date: Fri, 9 Sep 2022 15:43:37 +0200 Subject: [PATCH] move to use http instead of https --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index bbe6538..0be4ffc 100644 --- a/src/main.rs +++ b/src/main.rs @@ -131,7 +131,7 @@ fn main() { false => { // It is not a FS path, now we do what browsers do: // prepend "http://" and hope it points to a website - Url::parse(&format!("https://{hopefully_url}", hopefully_url = &target)) + Url::parse(&format!("http://{hopefully_url}", hopefully_url = &target)) .unwrap() } }