1
0
mirror of https://github.com/gorhill/uBlock.git synced 2024-07-03 02:37:21 +02:00

Fix typo in log message

This commit is contained in:
Raymond Hill 2024-02-15 09:47:15 -05:00
parent 7e00046b8e
commit 84481fcd98
No known key found for this signature in database
GPG Key ID: 25E1490B761470C2

View File

@ -1481,7 +1481,7 @@ function abortOnPropertyWrite(
if ( typeof prop !== 'string' ) { return; }
if ( prop === '' ) { return; }
const safe = safeSelf();
const logPrefix = safe.makeLogPrefix('abort-on-property-read', prop);
const logPrefix = safe.makeLogPrefix('abort-on-property-write', prop);
const exceptionToken = getExceptionToken();
let owner = window;
for (;;) {