You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Originally reported in #989, but I noticed it myself while playing around with some crawl data recently. The problem stems from the listener we're using to record DNS entries.
The onCompleted event is only fired after redirects are resolved. Instead, we want to use an event that is part of the redirect loop. e.g., onHeadersReceived. I tested this and it works well, but I still need to add some tests.
The text was updated successfully, but these errors were encountered:
Originally reported in #989, but I noticed it myself while playing around with some crawl data recently. The problem stems from the listener we're using to record DNS entries.
OpenWPM/Extension/src/background/dns-instrument.ts
Lines 29 to 44 in ab5fac2
The
onCompleted
event is only fired after redirects are resolved. Instead, we want to use an event that is part of the redirect loop. e.g.,onHeadersReceived
. I tested this and it works well, but I still need to add some tests.The text was updated successfully, but these errors were encountered: