Need to figure out how to change IRC messages depending on PubSub events #3499
Unanswered
karl-police
asked this question in
Q&A
Replies: 2 comments 4 replies
-
I think I found an idea: https://github.com/Chatterino/chatterino2/blob/master/src/common/Channel.cpp#L241 What delete does is, it changes the message flag to "Disabled". What I wonder, is if "None" would do the thing, but at the same time, I think the messages for the CTRL + F are separated? Not sure. Will try out now. |
Beta Was this translation helpful? Give feedback.
1 reply
-
"PubSub changed the way how the chat works" ...how did it actually? I don't get the point of the issue/discussion. |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
This is an example Automod captured Twitch message with a monitored message:
The Automod message is a PubSub message and so is the low-trust-users one, the one that says Suspicious User.
Twitch took the "low-trust-users" message and put it within the Automod message, making it clear that the suspicious user message, somehow gets in the original message.
Trying to add "low-trust-users" to the PubSub in Chatterino works, but there are some issues that I wonder on how I should deal with these:
Just note these only occur for "Monitored Messages" anything else doesn't cause this problem.
The reason this happens is because the message also gets sent to IRC.
Here is the other issue:
And that's all basically.
I was wondering if I could collect ideas on how to deal with this issue.
My thought was that I would look on how deleting messages works on Chatterino, to find the MessageID and "reconstruct the message".
Beta Was this translation helpful? Give feedback.
All reactions