Browse Source

Change host url to https when it's enabled, should fix some problems downloading attachments

pull/70/head
Daniel García 6 years ago
parent
commit
e88d8c856d
  1. 6
      src/auth.rs

6
src/auth.rs

@ -111,7 +111,11 @@ impl<'a, 'r> FromRequest<'a, 'r> for Headers {
// Get host
let host = match headers.get_one("Host") {
Some(host) => format!("http://{}", host), // TODO: Check if HTTPS
Some(host) => {
use std::env;
let protocol = if env::var("ROCKET_TLS").is_ok() {"https"} else {"http"};
format!("{}://{}", protocol, host)
},
_ => String::new()
};

Loading…
Cancel
Save