Browse Source

Make sure the icons are displayed correctly in desktop clients

pull/5469/head
Win‮8201‭Linux‬ 3 months ago
parent
commit
ef39180871
No known key found for this signature in database GPG Key ID: 618CD27F3D27A0FE
  1. 5
      src/util.rs

5
src/util.rs

@ -55,7 +55,10 @@ impl Fairing for AppHeaders {
res.set_raw_header("Referrer-Policy", "same-origin");
res.set_raw_header("X-Content-Type-Options", "nosniff");
res.set_raw_header("X-Robots-Tag", "noindex, nofollow");
res.set_raw_header("Cross-Origin-Resource-Policy", "same-origin");
if !res.headers().get_one("Content-Type").is_some_and(|v| v.starts_with("image/")) {
res.set_raw_header("Cross-Origin-Resource-Policy", "same-origin");
}
// Obsolete in modern browsers, unsafe (XS-Leak), and largely replaced by CSP
res.set_raw_header("X-XSS-Protection", "0");

Loading…
Cancel
Save