1
0
mirror of https://github.com/gorhill/uBlock.git synced 2024-09-15 07:22:28 +02:00

Do not truncate datalayer

Related issue:
- https://github.com/uBlockOrigin/uBlock-issues/issues/1671

Regression from:
- 0dbe581c5b
This commit is contained in:
Raymond Hill 2021-07-28 12:45:03 -04:00
parent 193cbac43e
commit ee0b2c2fa4
No known key found for this signature in database
GPG Key ID: 25E1490B761470C2

View File

@ -86,7 +86,6 @@
if ( Array.isArray(dl) ) {
dl.push = item => doCallback(item);
const q = dl.slice();
dl.length = 0;
for ( const item of q ) {
doCallback(item);
}