aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Jarred Sumner <jarred@jarredsumner.com> 2022-04-07 06:25:58 -0700
committerGravatar Jarred Sumner <jarred@jarredsumner.com> 2022-04-07 06:25:58 -0700
commit4285d8ec0beb43723c0c7add5c28dba1dcbb9fd2 (patch)
treed7af6c60bdae310a576665491e07e56814ecc3e0
parentc2a8c108346b278feb8d314f41647c899fadecc3 (diff)
downloadbun-4285d8ec0beb43723c0c7add5c28dba1dcbb9fd2.tar.gz
bun-4285d8ec0beb43723c0c7add5c28dba1dcbb9fd2.tar.zst
bun-4285d8ec0beb43723c0c7add5c28dba1dcbb9fd2.zip
Update ZigGlobalObject.cpp
-rw-r--r--src/javascript/jsc/bindings/ZigGlobalObject.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/javascript/jsc/bindings/ZigGlobalObject.cpp b/src/javascript/jsc/bindings/ZigGlobalObject.cpp
index d3c7d2785..a2e4fc42a 100644
--- a/src/javascript/jsc/bindings/ZigGlobalObject.cpp
+++ b/src/javascript/jsc/bindings/ZigGlobalObject.cpp
@@ -845,7 +845,7 @@ void GlobalObject::installAPIGlobals(JSClassRef* globals, int count, JSC::VM& vm
JSC::PropertyAttribute::CustomAccessor | 0);
putDirectCustomAccessor(vm, JSC::Identifier::fromString(vm, "URL"_s), JSC::CustomGetterSetter::create(vm, JSDOMURL_getter, nullptr),
- JSC::PropertyAttribute::DontDelete | JSC::PropertyAttribute::ReadOnly);
+ JSC::PropertyAttribute::DontDelete | 0);
putDirectCustomAccessor(vm, JSC::Identifier::fromString(vm, "URLSearchParams"_s), JSC::CustomGetterSetter::create(vm, JSURLSearchParams_getter, nullptr),
JSC::PropertyAttribute::DontDelete | JSC::PropertyAttribute::ReadOnly);