Forráskód Böngészése

LibWeb: Fix redirects when a response has no data

This makes redirects work when the HTTP server responds with just
headers and no data.
Gil Mendes 4 éve
szülő
commit
12f3aa9faa
1 módosított fájl, 5 hozzáadás és 5 törlés
  1. 5 5
      Userland/Libraries/LibWeb/Loader/FrameLoader.cpp

+ 5 - 5
Userland/Libraries/LibWeb/Loader/FrameLoader.cpp

@@ -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 {