move to use http instead of https

This commit is contained in:
Simone Mosciatti 2022-09-09 15:43:37 +02:00 committed by Sunshine
parent db7ee697b3
commit ef3684025b
1 changed files with 1 additions and 1 deletions

View File

@ -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()
}
}