From 10d6eb68d9d1b046f3a31044d3dc1d5c9631b676 Mon Sep 17 00:00:00 2001 From: Daan Vanden Bosch Date: Tue, 7 Jan 2020 00:19:57 +0100 Subject: [PATCH] Fixed bug in url path parsing. --- src/core/stores/GuiStore.ts | 3 ++- version.txt | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/src/core/stores/GuiStore.ts b/src/core/stores/GuiStore.ts index 32c8bcbb..acd8bee4 100644 --- a/src/core/stores/GuiStore.ts +++ b/src/core/stores/GuiStore.ts @@ -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); diff --git a/version.txt b/version.txt index 9e5feb52..abac1ea7 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -46 +47