From 62a3c7f90c8df2edad9081be29067489040bff04 Mon Sep 17 00:00:00 2001 From: AURUMVORXX Date: Wed, 16 Apr 2025 17:32:48 +0300 Subject: [PATCH] fix: Replaced test connection url with the actual one --- include/main.nut | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/main.nut b/include/main.nut index d6178d9..30bd5be 100644 --- a/include/main.nut +++ b/include/main.nut @@ -12,7 +12,7 @@ function PyG2O_Start(url, reconnect = false, silent = false) _pyg2o_server_connection = WebsocketClient(); _pyg2o_server_connection.silent = true; - _pyg2o_server_connection.setUrl("ws://localhost:8080"); + _pyg2o_server_connection.setUrl(url); _pyg2o_server_connection.start(); if (!_silent)