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

Fix regression in reporting of header= option in logger

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

Related commit:
- 725e6931f5
This commit is contained in:
Raymond Hill 2022-01-18 10:47:39 -05:00
parent 61966254cd
commit d53f2362b1
No known key found for this signature in database
GPG Key ID: 25E1490B761470C2

View File

@ -2495,7 +2495,7 @@ const FilterOnHeaders = class {
static logData(idata, details) {
const irefs = filterData[idata+1];
const headerOpt = filterRefs[irefs+0];
const headerOpt = filterRefs[irefs].headerOpt;
let opt = 'header';
if ( headerOpt !== '' ) {
opt += `=${headerOpt}`;