-
-
Notifications
You must be signed in to change notification settings - Fork 458
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Allow resub messages to show in /mentions tab #3148
Allow resub messages to show in /mentions tab #3148
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Code looks very good, I just need to find a good way to test this and I'll approve & merge the changes.
Edit: I wanted to make a comment instead of approving but fat-fingered, whatever it should just work anyway.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Now we're on commit 1d664f8; Changes from upstream we've pulled: - Minor: Allow resub messages to show in `/mentions` tab (Chatterino#3148) - Minor: Added a setting to hide similar messages by any user. (Chatterino#2716) - Minor: Duplicate spaces now count towards the display message length. (Chatterino#3002) - Minor: Commands are now backed up. (Chatterino#3168) - Bugfix: Restored ability to send duplicate `/me` messages. (Chatterino#3166) - Bugfix: Notifications for moderators about other moderators deleting messages can now be disabled. (Chatterino#3121)
Pull request checklist:
CHANGELOG.md
was updated, if applicableDescription
This PR aims to fix resub messages not showing in the mentions tab when they trigger a highlight. Previously resub/sub messages were explicitly excluded from the
/mentions
tab (for whatever reason). This clause has been removed.The sub message block (first clause in the highlight parser) has had the return statement removed so it can handle more highlights. I've added checks to see if the message is a sub message in all other highlight checking blocks so the colour of the sub message isn't overridden.
Fixes #1013