Merge branch 'master' into feature/offline

This commit is contained in:
Salvatore Giordano
2020-03-15 13:58:10 +01:00
7 changed files with 28 additions and 21 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;