From c578ce6e25526620e6b0183abcfd8ae674732af9 Mon Sep 17 00:00:00 2001 From: Joel Wetzell Date: Sat, 1 Nov 2025 12:21:24 -0500 Subject: [PATCH] change OSC address of updates request --- qController/Classes/Communication/QUpdater.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qController/Classes/Communication/QUpdater.cs b/qController/Classes/Communication/QUpdater.cs index 1a0c903..5d2ecf6 100644 --- a/qController/Classes/Communication/QUpdater.cs +++ b/qController/Classes/Communication/QUpdater.cs @@ -30,7 +30,7 @@ namespace qController.Communication { return; } - qController.qClient.sendTCP("/workspace/" + qController.qWorkspace.workspace_id + "/updates", 1); + qController.qClient.sendTCP("/updates", 1); qController.qClient.sendTCP("/workspace/" + qController.qWorkspace.workspace_id + "/cueLists"); } }