Skip to content

Commit

Permalink
fix(message-filter): Show starred messages in Favourites again
Browse files Browse the repository at this point in the history
Signed-off-by: Johannes Merkel <[email protected]>
  • Loading branch information
JohannesGGE authored and backportbot-nextcloud[bot] committed Jun 29, 2023
1 parent 2362ac1 commit b0bf6ae
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 b0bf6ae

Please sign in to comment.