From 762b2a896d0f5313fa111f3f5460a5676420b427 Mon Sep 17 00:00:00 2001 From: QuickMythril Date: Sat, 3 Feb 2024 22:36:34 -0500 Subject: [PATCH] Fix 'path' missing in URL parsing --- plugins/plugins/core/qdn/browser/browser.src.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/plugins/core/qdn/browser/browser.src.js b/plugins/plugins/core/qdn/browser/browser.src.js index 767a40bd..8efa2a58 100644 --- a/plugins/plugins/core/qdn/browser/browser.src.js +++ b/plugins/plugins/core/qdn/browser/browser.src.js @@ -270,7 +270,6 @@ class WebBrowser extends LitElement { const name = parts[0] parts.shift() let identifier - let path if (parts.length > 0) { identifier = parts[0] // Do not shift yet // Check if a resource exists with this service, name and identifier combination @@ -286,6 +285,7 @@ class WebBrowser extends LitElement { identifier = null } } + const path = parts.join("/") const components = {} components["service"] = service components["name"] = name