HiddenBrowser: Fix proxy setting all properties on browser

Missing return.
This commit is contained in:
Abe Jellinek 2025-08-21 12:19:46 -04:00
parent 74c8226323
commit ee42f44254

View file

@ -110,9 +110,11 @@ export class HiddenBrowser {
set(target, prop, val) {
if (prop in target) {
target[prop] = val;
return true;
}
else {
return Reflect.set(target._browser, prop, val);
}
Reflect.set(target._browser, prop, val)
return true;
}
});
}