data uri relative links should not have slash

This commit is contained in:
Adam D. Ruppe 2022-08-06 10:39:10 -04:00
parent fe5979cfc6
commit 4ca6535f73
1 changed files with 2 additions and 0 deletions

2
cgi.d
View File

@ -2981,6 +2981,8 @@ struct Uri {
/// Browsers use a function like this to figure out links in html.
Uri basedOn(in Uri baseUrl) const {
Uri n = this; // copies
if(n.scheme == "data")
return n;
// n.uriInvalidated = true; // make sure we regenerate...
// userinfo is not inherited... is this wrong?