From e45d14ffcec96b11e3f355dea50947c6bb8b8bbb Mon Sep 17 00:00:00 2001 From: Birm Date: Sun, 28 Apr 2024 21:56:09 -0400 Subject: [PATCH] add enumeration to url proxy --- common/util.js | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/common/util.js b/common/util.js index c695c5af0..d0be60d12 100644 --- a/common/util.js +++ b/common/util.js @@ -367,6 +367,12 @@ function getUrlVars() { deleteProperty: function(target, prop) { delete state[prop.toLowerCase()]; return true; + }, + getOwnPropertyDescriptor(target, prop) { + return { configurable: true, enumerable: true }; + }, + ownKeys: function(target) { + return Reflect.ownKeys(state) } }); }