Escaped '&' in ?url=
parameter is no longer passed through to rrd request
#5497
Labels
egui
Requires egui/eframe work
🦟 regression
A thing that used to work in an earlier release
user-request
This is a pressing issue for one of our users
🕸️ web
regarding running the viewer in a browser
This appears to be a regression as of 0.12.
In order to deal with things likes access tokens it can be helpful to pass through additional url-parameters as part of the rrd uri.
Consider an rrd that needs to be access as:
data.rrd?param1=foo¶m2=bar
, escaped asdata.rrd%3Fparam1%3Dfoo%26param2%3Dbar
.When including these parameters at the end of the url string:
In 0.11, this worked correctly:
https://app.rerun.io/version/0.11.0/?url=https://demo.rerun.io/version/0.11.0/examples/dna/data.rrd%3Fparam1%3Dfoo%26param2%3Dbar
As evidenced in the developer tools:
However, as of 0.12.0:
https://app.rerun.io/version/0.12.0/?url=https://app.rerun.io/version/0.12.0/examples/dna.rrd%3Fparam1%3Dfoo%26param2%3Dbar
The first parameter is passed through, but not the second:
The text was updated successfully, but these errors were encountered: