Update nodelist

This commit is contained in:
usernameeReal 2023-07-24 13:09:03 +00:00
parent cfc7dfd21a
commit 56712c2bb0

View file

@ -877,7 +877,7 @@ usernameSpan.addEventListener('click', () => {
// Load all vms
(async () => {
var p = [];
const {nodes} = await fetch('/better-vm/nodelist/nodelist.json').then(x=>x.json());
const {nodes} = await fetch('/better-vm-nodelist/nodelist.json').then(x=>x.json());
[...config.serverAddresses,...nodes].forEach(v => p.push(multicollab(v)));
await Promise.all(p);
var vm = vms.find(v => v.id === window.location.hash.substring(1));