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
because the extra query string parameter are swallowed up by the debouncer's parsing.
We see in the original URL that the red parameter includes a ? (the second one in that URL) which is a sign that it's not URL-encoded and so these URLs are not using the HTML5 form encoding for their query strings.
The text was updated successfully, but these errors were encountered:
fmarier
changed the title
Remove unsupported t.myvisualiq.net rule
Remove unsupported t.myvisualiq.net rule
May 27, 2022
The
t.myvisualiq.net
rule introduced in #716 cannot be expressed correctly until brave/brave-browser#22429 is implemented.The example URL:
https://t.myvisualiq.net/click_pixel?et=c&ago=212&ao=126&aca=71120122347799678&si=-2&ci=-2&pi=-2&ad=58120001282129221&sv1=43121240841212382&advt=-2&chnl=-2&vndr=335&sz=6583&u=6e790e6681711263e3af6fd3c9e2c788&red=https://www.bestbuy.com/site/electronics/top-deals/pcmcat1523299784494.c?id=pcmcat1563223712494&ref=213&loc=1&gclsrc=3p.ds&ds_rl=3223423&ref=212&loc=DWA
currently gets debounced to:
https://www.bestbuy.com/site/electronics/top-deals/pcmcat1523299784494.c?id=pcmcat1563223712494
instead of the full URL:
https://www.bestbuy.com/site/electronics/top-deals/pcmcat1523299784494.c?id=pcmcat1563223712494&ref=213&loc=1&gclsrc=3p.ds&ds_rl=3223423&ref=212&loc=DWA
because the extra query string parameter are swallowed up by the debouncer's parsing.
We see in the original URL that the
red
parameter includes a?
(the second one in that URL) which is a sign that it's not URL-encoded and so these URLs are not using the HTML5 form encoding for their query strings.The text was updated successfully, but these errors were encountered: