mirror of https://github.com/gorhill/uBlock.git
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:
parent
61966254cd
commit
d53f2362b1
|
@ -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}`;
|
||||
|
|
Loading…
Reference in New Issue