Merge pull request 'fix: osc error message' (#1597) from osc-debug-flag into main

Reviewed-on: https://codeberg.org/uzu/strudel/pulls/1597
This commit is contained in:
froos
2025-09-19 21:59:42 +02:00
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@strudel/osc",
"version": "1.2.8",
"version": "1.2.10",
"description": "OSC messaging for strudel",
"main": "osc.mjs",
"bin": "./server.js",
+1 -1
View File
@@ -56,7 +56,7 @@ if (debug) {
osc.on('error', (message) => {
if (message.toString().includes('EADDRINUSE')) {
console.log(`------ ERROR -------
osc server already running! to stop it:
a server is already running on port 57121! to stop it:
1. run "lsof -ti :57121 | xargs kill -9" (macos / linux)
2. re-run the osc server
`);