diff --git a/Userland/Libraries/LibJS/Runtime/TypedArrayPrototype.cpp b/Userland/Libraries/LibJS/Runtime/TypedArrayPrototype.cpp index 412b30e697..168344f577 100644 --- a/Userland/Libraries/LibJS/Runtime/TypedArrayPrototype.cpp +++ b/Userland/Libraries/LibJS/Runtime/TypedArrayPrototype.cpp @@ -463,7 +463,7 @@ JS_DEFINE_NATIVE_FUNCTION(TypedArrayPrototype::fill) for (; k < final; ++k) { // a. Let Pk be ! ToString(𝔽(k)). // b. Perform ! Set(O, Pk, value, true). - TRY(typed_array->set(k, value, Object::ShouldThrowExceptions::Yes)); + MUST(typed_array->set(k, value, Object::ShouldThrowExceptions::Yes)); // c. Set k to k + 1. }