Fixed bug in url path parsing.

This commit is contained in:
Daan Vanden Bosch 2020-01-07 00:19:57 +01:00
parent b9b9a8568d
commit 10d6eb68d9
2 changed files with 3 additions and 2 deletions

View File

@ -51,7 +51,8 @@ export class GuiStore extends Store {
const url = window.location.hash.slice(1);
const [full_path, params_str] = url.split("?");
const second_slash_idx = full_path.indexOf("/", 1);
const tool_str = second_slash_idx === -1 ? full_path : full_path.slice(1, second_slash_idx);
const tool_str =
second_slash_idx === -1 ? full_path.slice(1) : full_path.slice(1, second_slash_idx);
const tool = string_to_gui_tool(tool_str) ?? GuiTool.Viewer;
const path = second_slash_idx === -1 ? "" : full_path.slice(second_slash_idx);

View File

@ -1 +1 @@
46
47