Skip to content

Commit

Permalink
Fix regression in reporting of header= option in logger
Browse files Browse the repository at this point in the history
Related issue:
- uBlockOrigin/uBlock-issues#1932

Related commit:
- 725e693
  • Loading branch information
gorhill committed Jan 18, 2022
1 parent 6196625 commit d53f236
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/js/static-net-filtering.js
Original file line number Diff line number Diff line change
Expand Up @@ -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}`;
Expand Down

0 comments on commit d53f236

Please sign in to comment.