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 4cb1951 commit a76787aCopy full SHA for a76787a
lib/widgets/recent_dm_conversations.dart
@@ -100,6 +100,9 @@ class RecentDmConversationsItem extends StatelessWidget {
100
title = selfUser.fullName;
101
avatar = AvatarImage(userId: selfUser.userId);
102
case [var otherUserId]:
103
+ // TODO(#296) actually don't show this row if the user is muted?
104
+ // (should we offer a "spam" style summary screen of recent 1:1 DM
105
+ // conversations from muted users?)
106
final otherUser = store.users[otherUserId];
107
title = otherUser?.fullName ?? '(unknown user)';
108
avatar = AvatarImage(userId: otherUserId);
0 commit comments