diff --git a/ports/glutin/browser.rs b/ports/glutin/browser.rs index e12d283fc4e..e2f7d397919 100644 --- a/ports/glutin/browser.rs +++ b/ports/glutin/browser.rs @@ -491,7 +491,7 @@ fn sanitize_url(request: &str) -> Option { .ok() .or_else(|| { if request.contains('/') || is_reg_domain(request) { - ServoUrl::parse(&format!("http://{}", request)).ok() + ServoUrl::parse(&format!("https://{}", request)).ok() } else { None }