This commit is contained in:
Christien Rioux 2024-03-24 12:13:27 -04:00
parent 64d4d0cefb
commit 41bb198d92
40 changed files with 1623 additions and 1272 deletions

View file

@ -40,7 +40,7 @@ class ChatSingleContactListWidget extends StatelessWidget {
initialList: chatList.toList(),
builder: (l, i, c) {
final contact =
contactMap[c.remoteConversationKey];
contactMap[c.remoteConversationRecordKey];
if (contact == null) {
return const Text('...');
}
@ -52,7 +52,7 @@ class ChatSingleContactListWidget extends StatelessWidget {
final lowerValue = value.toLowerCase();
return chatList.where((c) {
final contact =
contactMap[c.remoteConversationKey];
contactMap[c.remoteConversationRecordKey];
if (contact == null) {
return false;
}