File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed
Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -38,11 +38,13 @@ abstract final class ZulipAction {
3838 ChannelNarrow (: final streamId) => store.unreads.countInChannelNarrow (streamId),
3939 MentionsNarrow () => store.unreads.countInMentionsNarrow (),
4040 KeywordSearchNarrow () => store.unreads.countInKeywordSearchNarrow (),
41+ StarredMessagesNarrow () => store.unreads.countInStarredMessagesNarrow (),
4142 _ => 0 ,
4243 };
4344
4445 if (narrow is CombinedFeedNarrow || narrow is ChannelNarrow ||
45- narrow is MentionsNarrow || narrow is KeywordSearchNarrow ) {
46+ narrow is MentionsNarrow || narrow is KeywordSearchNarrow ||
47+ narrow is StarredMessagesNarrow ) {
4648 final didConfirm = showSuggestedActionDialog (context: context,
4749 title: zulipLocalizations.markAllAsReadConfirmationDialogTitle,
4850 message: zulipLocalizations.markAllAsReadConfirmationDialogMessage (unreadCount),
You can’t perform that action at this time.
0 commit comments