diff --git a/lib/pages/chat_list/stories_header.dart b/lib/pages/chat_list/stories_header.dart index 90eb59910..25e666b4a 100644 --- a/lib/pages/chat_list/stories_header.dart +++ b/lib/pages/chat_list/stories_header.dart @@ -132,11 +132,13 @@ class StoriesHeader extends StatelessWidget { avatarUrl: avatarUrl, userId: userId ?? 'Unknown', ), - lastMessage: room.lastEvent?.calcLocalizedBodyFallback( - MatrixLocals( - L10n.of(context)!, - ), - ), + lastMessage: room.hasPosts + ? room.lastEvent?.calcLocalizedBodyFallback( + MatrixLocals( + L10n.of(context)!, + ), + ) + : null, heroTag: 'stories_${room.id}', hasPosts: room.hasPosts || room == ownStoryRoom, showEditFab: userId == client.userID,