Skip to content

Commit

Permalink
Merge pull request #8589 from nextcloud/backport/8572/stable2.2
Browse files Browse the repository at this point in the history
[stable2.2] fix(message-filter): Show starred messages in Favourites again
  • Loading branch information
ChristophWurst authored Jul 7, 2023
2 parents e0ed293 + 69d5ab4 commit 9c41fcd
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions lib/Service/Search/FilterStringParser.php
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ private function parseFilterToken(SearchQuery $query, string $token): bool {
'answered' => Flag::is(Flag::ANSWERED),
'read' => Flag::is(Flag::SEEN),
'unread' => Flag::not(Flag::SEEN),
'starred' => Flag::is(Flag::FLAGGED),
'important' => Flag::is(Flag::IMPORTANT),
'is_important' => FlagExpression::and(
Flag::is(Flag::IMPORTANT)
Expand Down

0 comments on commit 9c41fcd

Please sign in to comment.