Trying to link
https://projects.raspberrypi.org/en/projects/?software[]=html-css-javascript/
when I click the URL button, I get
https://projects.raspberrypi.org/en/projects/?software=undefined&hidden=true[]=html-css-javascript/
Trying to link
https://adoptapet.com/pet-search?clan_id=2&geo_range=50&location=Toronto,%20ON&page=1
and I get
https://adoptapet.com/pet-search?clan_id=2&geo_range=50&location=Toronto&hidden=true,%20ON&page=1
Manually adding ?hidden=true
doesn’t work either
2 Likes
https://projects.raspberrypi.org/en/projects/?software[]=html-css-javascript/
wow that’s a wild url, I didn’t realize you could do []
, ,
, and trailing /
in query strings. I’ll rework this in the future to fix this
for now though, try
https://projects.raspberrypi.org/en/projects/?software[]=html-css-javascript/&hidden=true
https://adoptapet.com/pet-search?clan_id=2&geo_range=50&location=Toronto,%20ON&page=1&hidden=true
1 Like
just released a fix
from:
https://projects.raspberrypi.org/en/projects/?software[]=html-css-javascript/
clicking hidden:
https://projects.raspberrypi.org/en/projects/?software[]=html-css-javascript&hidden=true/
from:
https://adoptapet.com/pet-search?clan_id=2&geo_range=50&location=Toronto,%20ON&page=1
clicking hidden:
https://adoptapet.com/pet-search?clan_id=2&geo_range=50&location=Toronto%2C%20ON&page=1&hidden=true
both urls seem to work, couldn’t find any regressions in other urls. let me know if you still have issues with this
2 Likes