hashchange: Show default view when the hash is unknown.

Fixes #18870.
This commit is contained in:
Riken Shah
2021-06-19 04:58:15 +00:00
committed by Tim Abbott
parent 5e53563016
commit 0e65225d06
2 changed files with 19 additions and 2 deletions

View File

@@ -179,6 +179,8 @@ function do_hashchange_normal(from_reload) {
case "#about-zulip":
blueslip.error("overlay logic skipped for: " + hash);
break;
default:
show_default_view();
}
return false;
}