mirror of
https://github.com/DaanVandenBosch/phantasmal-world.git
synced 2025-04-04 22:58:29 +08:00
Fixed bug in url path parsing.
This commit is contained in:
parent
b9b9a8568d
commit
10d6eb68d9
@ -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);
|
||||
|
@ -1 +1 @@
|
||||
46
|
||||
47
|
||||
|
Loading…
Reference in New Issue
Block a user