Added group chatters support to websocket.

This commit is contained in:
Tom
2025-01-18 17:33:15 +00:00
parent a49e52a6bb
commit 9f884f71ae
6 changed files with 153 additions and 3 deletions

View File

@@ -20,6 +20,12 @@ namespace TwitchChatTTS.Hermes.Socket.Requests
public void Acknowledge(string requestId, string? json, IDictionary<string, object>? requestData)
{
if (json == null)
{
_logger.Warning("Policy JSON data is null.");
return;
}
var data = json.Split('/');
if (data.Length != 2)
{