You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Mar 9, 2026. It is now read-only.
I'm only seeing this occasionally and haven't been able to isolate what might be causing the issue. I can confirm that the cluster is connected to the channel (thus the event), also confirmed that the channel is listed in tmi_cluster_supervisor_processes in the channels array for an active and connected process. Just... doesn't seem to be there in the $client->getChannel().
Given that the bot is in the channel, I have to assume the $this->write("JOIN {$channel}"); from Irc.php is indeed happening, and the line before that is the one that should be putting the channel in the channels array. Can also confirm there's a record for the channel in the tmi_cluster_channels table, with reconnect true, revoked false.
I've seen this issue with a handful of channels, it seems to be the same ones that are causing this error - not random. Ie; if this user goes live and there's replied-to messages, this error will happen every time. But replied-to messages from other channels are fine. I've only really started digging into it the last few hours and so I've only got two examples of channels that are live while I'm digging into it and one of them was follower only chat, the other was verified accounts only chat. But... the bot is already in the channels and getting the messages, so it should be in that channels array, right?
Running in this error:
I'm only seeing this occasionally and haven't been able to isolate what might be causing the issue. I can confirm that the cluster is connected to the channel (thus the event), also confirmed that the channel is listed in
tmi_cluster_supervisor_processesin the channels array for an active and connected process. Just... doesn't seem to be there in the$client->getChannel().Given that the bot is in the channel, I have to assume the
$this->write("JOIN {$channel}");from Irc.php is indeed happening, and the line before that is the one that should be putting the channel in the channels array. Can also confirm there's a record for the channel in thetmi_cluster_channelstable, withreconnecttrue,revokedfalse.I've seen this issue with a handful of channels, it seems to be the same ones that are causing this error - not random. Ie; if this user goes live and there's replied-to messages, this error will happen every time. But replied-to messages from other channels are fine. I've only really started digging into it the last few hours and so I've only got two examples of channels that are live while I'm digging into it and one of them was follower only chat, the other was verified accounts only chat. But... the bot is already in the channels and getting the messages, so it should be in that channels array, right?
Any ideas?