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 36dc4da commit 44e6642Copy full SHA for 44e6642
lib/widgets/recent_dm_conversations.dart
@@ -92,6 +92,9 @@ class RecentDmConversationsItem extends StatelessWidget {
92
title = selfUser.fullName;
93
avatar = AvatarImage(userId: selfUser.userId);
94
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?)
98
final otherUser = store.users[otherUserId];
99
title = otherUser?.fullName ?? '(unknown user)';
100
avatar = AvatarImage(userId: otherUserId);
0 commit comments