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:
parent
e9388408db
commit
12f3aa9faa
1 changed files with 5 additions and 5 deletions
|
@ -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 {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue