Skip to content

Commit 6c77b7c

Browse files
committed
RecentDmConversationsPage [nfc]: Add TODO for muting users
1 parent 6e4b591 commit 6c77b7c

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

lib/widgets/recent_dm_conversations.dart

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,9 @@ class RecentDmConversationsItem extends StatelessWidget {
9595
title = selfUser.fullName;
9696
avatar = AvatarImage(userId: selfUser.userId);
9797
case [var otherUserId]:
98+
// TODO(#296) actually don't show this row if the user is muted?
99+
// (should we offer a "spam folder" style summary screen of recent
100+
// 1:1 DM conversations from muted users?)
98101
final otherUser = store.users[otherUserId];
99102
title = otherUser?.fullName ?? '(unknown user)';
100103
avatar = AvatarImage(userId: otherUserId);

0 commit comments

Comments
 (0)