[F] Fix path reading issue

This commit is contained in:
Hykilpikonna
2019-11-02 20:11:39 -04:00
parent 336a58b23d
commit a2445aca6a
+1 -1
View File
@@ -27,7 +27,7 @@ export default class Navigation extends Vue
Navigation.instance = this;
// Set history state
let url = window.location.pathname;
let url = '/' + window.location.hash;
if (url == '/' || url == '') url = '/#overall';
window.history.replaceState({lastTab: url.substring(1)}, '', url);