diff --git a/Libraries/LibWeb/IndexedDB/IDBTransaction.h b/Libraries/LibWeb/IndexedDB/IDBTransaction.h index 98b50c08ca..e3c5e5c6f7 100644 --- a/Libraries/LibWeb/IndexedDB/IDBTransaction.h +++ b/Libraries/LibWeb/IndexedDB/IDBTransaction.h @@ -117,7 +117,7 @@ private: Bindings::IDBTransactionDurability m_durability { Bindings::IDBTransactionDurability::Default }; // A transaction has a state - TransactionState m_state; + TransactionState m_state { TransactionState::Active }; // A transaction has a error which is set if the transaction is aborted. GC::Ptr m_error;