This commit is contained in:
Raymond Hill 2025-03-25 12:29:46 -04:00
parent 69ff3ca6fb
commit 760bd23c5e
No known key found for this signature in database
GPG Key ID: 25E1490B761470C2

View File

@ -2691,7 +2691,7 @@ function trustedPreventDomBypass(
for (;;) {
const pos = chain.indexOf('.');
if ( pos === -1 ) { break; }
const prop = chain.slice(0, pos)
const prop = chain.slice(0, pos);
me = me[prop]; it = it[prop];
chain = chain.slice(pos+1);
}