We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6e4b591 commit 6c77b7cCopy full SHA for 6c77b7c
lib/widgets/recent_dm_conversations.dart
@@ -95,6 +95,9 @@ class RecentDmConversationsItem extends StatelessWidget {
95
title = selfUser.fullName;
96
avatar = AvatarImage(userId: selfUser.userId);
97
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?)
101
final otherUser = store.users[otherUserId];
102
title = otherUser?.fullName ?? '(unknown user)';
103
avatar = AvatarImage(userId: otherUserId);
0 commit comments