From 1fc2d6f1af128e529eff23c2a7038b42381d56e6 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);