fix #6: ChannelListView NULL error when a channel has no messages

This commit is contained in:
Salvatore Giordano
2020-03-15 11:43:52 +01:00
parent 0952c0d5e1
commit 38300939d3
4 changed files with 67 additions and 64 deletions
+3
View File
@@ -68,6 +68,9 @@ class ChannelPreview extends StatelessWidget {
stream: channel.lastMessageAtStream,
initialData: channel.lastMessageAt,
builder: (context, snapshot) {
if (!snapshot.hasData) {
return SizedBox();
}
final lastMessageAt = snapshot.data.toLocal();
String stringDate;