From 99d164d0cb9c6421ff79a39e8d1d58f33142303c Mon Sep 17 00:00:00 2001 From: Luxferre Date: Wed, 25 Sep 2024 09:23:50 +0300 Subject: [PATCH] Fixed the loops in Twitch backend --- src/twitch.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/twitch.go b/src/twitch.go index c30421c..b3acbfe 100644 --- a/src/twitch.go +++ b/src/twitch.go @@ -301,7 +301,7 @@ func twitch_run(config map[string]interface{}) { tcpwritestr(conn, "CAP REQ :twitch.tv/membership twitch.tv/tags twitch.tv/commands\n") /* set up subscriptions and start the WebSocket event loop goroutine */ - tw_ws_pubsub_readloop() + go tw_ws_pubsub_readloop() log.Println("StreamGoose Twitch Go backend connected")