SevenTV / chatterino7

Chat client for https://twitch.tv
MIT License
359 stars 70 forks source link

How to ignore announcement messages? #226

Closed ketersu closed 1 year ago

ketersu commented 1 year ago

Checklist

Describe your issue

I found "ignores" function is not working to ignore bots announcement messages, Is there any way to do this?

Screenshots

No response

OS and Chatterino Version

Chatterino 7.4.4 (commit 90ee0afd) built with Qt 5.15.2, Windows SDK, MSVC 193431944, Crashpad Running on Windows 10 Version 2009, kernel: 10.0.19044

Nerixyz commented 1 year ago

This is a bug in upstream Chatterino, I filed https://github.com/Chatterino/chatterino2/issues/4694.

Felanbird commented 1 year ago

@ketersu As a workaround to the native ignore feature not working, you can use filters. !(flags.sub_message && author.name == "botName") image

If you would like the Announcement message to be removed too, you can change the filter to: !(message.content == "Announcement" || flags.sub_message && author.name == "botName") but this would also remove the Announcement message under normal announcements. image