fix: Null pointer crash in chat list item

pull/2261/head
Christian Kußowski 1 month ago
parent a41dadc6cf
commit 8a64b3630c
No known key found for this signature in database
GPG Key ID: E067ECD60F1A0652

@ -222,7 +222,7 @@ class ChatListItem extends StatelessWidget {
children: <Widget>[
if (typingText.isEmpty &&
ownMessage &&
room.lastEvent!.status.isSending) ...[
room.lastEvent?.status.isSending == true) ...[
const SizedBox(
width: 16,
height: 16,

Loading…
Cancel
Save