From 4b87e81402d5236c2989c15bd4d4d6792e75f54f Mon Sep 17 00:00:00 2001 From: stelar7 Date: Wed, 2 Apr 2025 11:14:28 +0200 Subject: [PATCH] LibWeb/IDB: Comment out infinite loop while waiting for next PR Since the steps needed to avoid this loop is quite long, adding this as a fixme for the future will make this PR easier to review --- Libraries/LibWeb/IndexedDB/Internal/Algorithms.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Libraries/LibWeb/IndexedDB/Internal/Algorithms.cpp b/Libraries/LibWeb/IndexedDB/Internal/Algorithms.cpp index 9dc3b7b72d6..6b1f81c648d 100644 --- a/Libraries/LibWeb/IndexedDB/Internal/Algorithms.cpp +++ b/Libraries/LibWeb/IndexedDB/Internal/Algorithms.cpp @@ -545,7 +545,7 @@ void abort_a_transaction(GC::Ref transaction, GC::Ptrset_result(JS::js_undefined()); // 4. Set request’s processed flag to false. - request->set_processed(false); + // FIXME: request->set_processed(false); // 5. Set request’s done flag to false. request->set_done(false);