From 3cf296d7e54b3476c604f34cb30050cd5aabcf33 Mon Sep 17 00:00:00 2001 From: liamcottle Date: Wed, 13 Mar 2024 04:43:19 +1300 Subject: [PATCH] fix going to random node --- src/public/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/public/index.html b/src/public/index.html index ee3f0cb..1affafb 100644 --- a/src/public/index.html +++ b/src/public/index.html @@ -410,7 +410,7 @@ if(nodes.length > 0){ const randomNode = nodes[Math.floor(Math.random() * nodes.length)]; if(randomNode){ - goToNode(randomNode.id); + goToNode(randomNode.node_id); } } }