improve index route parsing error message

This commit is contained in:
Evan Almloff 2023-07-14 08:13:44 -07:00
parent 86cd0ec81c
commit 8a142bbc95

View file

@ -50,7 +50,9 @@ where
{
fn default() -> Self {
Self {
current: "/".parse().unwrap_or_else(|err| panic!("{}", err)),
current: "/".parse().unwrap_or_else(|err| {
panic!("index route does not exist:\n{}\n use MemoryHistory::with_initial_path to set a custom path", err)
}),
history: Vec::new(),
future: Vec::new(),
}