Skip to content

Commit

Permalink
Fix duplicated headers, addresses #120
Browse files Browse the repository at this point in the history
  • Loading branch information
execveat committed Jul 12, 2023
1 parent 6d6700b commit ff62b20
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/inql/scraper/headers_scraper.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,8 @@ def handleRequestReceived(self, interceptedRequest):
log.debug(self._scraped_headers[domain])

# continue with the request
return ProxyRequestReceivedAction.continueWith(interceptedRequest.withDefaultHeaders())
return ProxyRequestReceivedAction.continueWith(interceptedRequest)


def handleRequestToBeSent(self, interceptedRequest):
return ProxyRequestToBeSentAction.continueWith(interceptedRequest.withDefaultHeaders())
return ProxyRequestToBeSentAction.continueWith(interceptedRequest)

0 comments on commit ff62b20

Please sign in to comment.