Hello!
I have an interface built in javascript using websockets to communicate with twitch.
config:
socket.send(‘CAP REQ :twitch.tv/tags twitch.tv/commands twitch.tv/membership’);
socket.send('PASS ’ + mypass);
socket.send('NICK ’ + mynick);
socket.send(‘JOIN #’ + channelname);
sending whisper:
socket.send(‘PRIVMSG #channelname : /w ttdbot test’);
I was always been able to successfully send whispers, but today it suddenly stopped working.
I’m still able to send messages to the chat. The issue is when I try to send a whisper, it is now displayed in the chat instead of actually sending it privately.
e.g., the following is displayed in the channel’s chat: ‘/w ttdbot test’
I think it may be something “wrong” with Twitch, because I didn’t touch the code
Does anyone have any idea what might be causing this issue?
thanks in advance!