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

@@ -21,7 +21,8 @@ namespace TwitchChatTTS.Hermes.Socket.Requests
public void Acknowledge(string requestId, string? json, IDictionary<string, object>? requestData)
{
if (string.IsNullOrWhiteSpace(json)) {
if (string.IsNullOrWhiteSpace(json))
{
_logger.Warning($"Group JSON data is null.");
return;
}