forgot asu_url as url prefix
authorMoritz Warning <moritzwarning@web.de>
Sun, 14 Jun 2020 22:07:11 +0000 (00:07 +0200)
committerMoritz Warning <moritzwarning@web.de>
Sun, 14 Jun 2020 22:08:04 +0000 (00:08 +0200)
this makes it work with chef.libremesh.org again

index.js

index 2f305bea0b3d869d7b609ed5e6cdbb9dd322e1c5..eafde3800e687abb4ede6a2b366f940e9f366e6f 100644 (file)
--- a/index.js
+++ b/index.js
@@ -280,7 +280,7 @@ function setupAutocompleteList(input, items, as_list, onbegin, onend) {
 // for attended sysupgrade
 function updatePackageList(version, target) {
   // set available packages
-  fetch(config.versions[version] + '/' + target +  '/index.json')
+  fetch(config.asu_url + '/' + config.versions[version] + '/' + target +  '/index.json')
   .then(response => response.json())
   .then(all_packages => {
     setupAutocompleteList($('packages'), all_packages, true, _ => {}, textarea => {
@@ -394,7 +394,7 @@ function init() {
   setupSelectList($('versions'), Object.keys(config.versions), version => {
     var url = config.versions[version];
     if (config.asu_url) {
-      url += "/profiles.json";
+      url = config.asu_url + '/' + url + '/profiles.json';
     }
     fetch(url)
       .then(obj => {