diff --git a/Userland/Libraries/LibJS/Runtime/Object.cpp b/Userland/Libraries/LibJS/Runtime/Object.cpp index 5c5d48a879..2a92344f46 100644 --- a/Userland/Libraries/LibJS/Runtime/Object.cpp +++ b/Userland/Libraries/LibJS/Runtime/Object.cpp @@ -372,8 +372,6 @@ Optional Object::get_own_property_descriptor(const PropertyN if (!metadata.has_value()) return {}; value = m_storage[metadata.value().offset]; - if (vm().exception()) - return {}; attributes = metadata.value().attributes; }