Skip to content

Commit c32ab06

Browse files
committed
RecentDmConversationsPage [nfc]: Add TODO for muting users
1 parent 8f4f315 commit c32ab06

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
@@ -92,6 +92,9 @@ class RecentDmConversationsItem extends StatelessWidget {
9292
title = selfUser.fullName;
9393
avatar = AvatarImage(userId: selfUser.userId);
9494
case [var otherUserId]:
95+
// TODO(#296) actually don't show this row if the user is muted?
96+
// (should we offer a "spam folder" style summary screen of recent
97+
// 1:1 DM conversations from muted users?)
9598
final otherUser = store.users[otherUserId];
9699
title = otherUser?.fullName ?? '(unknown user)';
97100
avatar = AvatarImage(userId: otherUserId);

0 commit comments

Comments
 (0)