From 8477d0cf5f2f2526bb3858ca7da26bffd8e98635 Mon Sep 17 00:00:00 2001 From: Wojtek Kosior Date: Sat, 19 Feb 2022 19:26:48 +0100 Subject: fix URL construction when downloading definitions from Hydrilla --- html/install.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'html') diff --git a/html/install.js b/html/install.js index 7b3f3fe..95388a3 100644 --- a/html/install.js +++ b/html/install.js @@ -181,7 +181,7 @@ function InstallView(tab_id, on_view_show, on_view_hide) { work.waiting++; const url = ver ? - `${this.repo_url}${item_type}/${id}/${ver.join(".")}.json` : + `${this.repo_url}${item_type}/${id}/${ver.join(".")}` : `${this.repo_url}${item_type}/${id}.json`; const response = await browser.tabs.sendMessage(tab_id, ["repo_query", url]); -- cgit v1.2.3