Remove 'Nel' and 'Report-To' response headers

This commit is contained in:
Ben Sherman 2023-07-08 19:20:58 -07:00
parent ea696687be
commit 7a14975fb8
1 changed files with 2 additions and 0 deletions

View File

@ -104,6 +104,8 @@ async fn stream(url: &str, req: &Request<Body>) -> Result<Response<Body>, String
rm("x-cdn-server-region");
rm("x-reddit-cdn");
rm("x-reddit-video-features");
rm("Nel");
rm("Report-To");
res
})