From 56712c2bb0c2465d3ef6e3aaa811a10a18069922 Mon Sep 17 00:00:00 2001 From: usernameeReal Date: Mon, 24 Jul 2023 13:09:03 +0000 Subject: [PATCH] Update nodelist --- src/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.js b/src/index.js index 5f24a2e..4699dcc 100644 --- a/src/index.js +++ b/src/index.js @@ -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));