diff --git a/core/lib/src/route/uri.rs b/core/lib/src/route/uri.rs index 9ef156ba..e440270f 100644 --- a/core/lib/src/route/uri.rs +++ b/core/lib/src/route/uri.rs @@ -250,7 +250,7 @@ impl<'a> RouteUri<'a> { write!(f, "{}", Paint::blue(self.base()).underline())?; write!(f, "{}", Paint::blue(unmounted_part))?; if let Some(q) = self.unmounted().query() { - write!(f, "?{}", Paint::green(q))?; + write!(f, "{}{}", Paint::yellow("?"), Paint::yellow(q))?; } Ok(())