switch to using the actual osc library here

This commit is contained in:
2025-05-18 19:31:56 -05:00
parent 8b07ce0a44
commit 48ec7908dd
5 changed files with 99 additions and 50 deletions
+2 -2
View File
@@ -4,7 +4,7 @@ import (
"fmt"
"net"
"github.com/chabad360/go-osc/osc"
osc "github.com/jwetzell/osc-go"
"github.com/spf13/cobra"
)
@@ -50,7 +50,7 @@ func listen(netAddress string) {
panic(err)
}
oscMessage, err := osc.NewMessageFromData(buffer[0:bytesRead])
oscMessage, err := osc.MessageFromBytes(buffer[0:bytesRead])
if err != nil {
panic(err)