Added is:first-msg search option (#3700)

* added first-msg for flag predicate

* Update CHANGELOG.md

* Update changelog entry phrasing

Co-authored-by: pajlada <rasmus.karlsson@pajlada.com>
This commit is contained in:
Auro 2022-04-30 05:23:48 -04:00 committed by GitHub
parent 7246ab38c7
commit 94e4cd2c1d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 0 deletions

View file

@ -2,6 +2,7 @@
## Unversioned
- Minor: Added `is:first-msg` search option. (#3700)
- Minor: Added quotation marks in the permitted/blocked Automod messages for clarity. (#3654)
- Minor: Adjust large stream thumbnail to 16:9 (#3655)
- Minor: Fixed being unable to load Twitch Usercards from the `/mentions` tab. (#3623)

View file

@ -28,6 +28,10 @@ MessageFlagsPredicate::MessageFlagsPredicate(const QString &flags)
{
this->flags_.set(MessageFlag::System);
}
else if (flag == "first-msg")
{
this->flags_.set(MessageFlag::FirstMessage);
}
}
}