1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 06:58:11 +00:00

LibWeb: Fix redirects when a response has no data

This makes redirects work when the HTTP server responds with just
headers and no data.
This commit is contained in:
Gil Mendes 2021-06-20 12:22:43 +01:00 committed by Linus Groh
parent e9388408db
commit 12f3aa9faa

View file

@ -229,11 +229,6 @@ void FrameLoader::resource_did_load()
{
auto url = resource()->url();
if (!resource()->has_encoded_data()) {
load_error_page(url, "No data");
return;
}
// FIXME: Also check HTTP status code before redirecting
auto location = resource()->response_headers().get("Location");
if (location.has_value()) {
@ -248,6 +243,11 @@ void FrameLoader::resource_did_load()
}
m_redirects_count = 0;
if (!resource()->has_encoded_data()) {
load_error_page(url, "No data");
return;
}
if (resource()->has_encoding()) {
dbgln("This content has MIME type '{}', encoding '{}'", resource()->mime_type(), resource()->encoding().value());
} else {