diff --git a/lib/src/reply_message_widget.dart b/lib/src/reply_message_widget.dart index 9a56c601..d09903cf 100644 --- a/lib/src/reply_message_widget.dart +++ b/lib/src/reply_message_widget.dart @@ -162,7 +162,7 @@ class ReplyMessageWidget extends StatelessWidget { final isOnlyEmoji = message.text.characters.every((c) => Emoji.byChar(c) != null); var msg = _hasAttachments && !_containsText - ? message.copyWith(text: message.attachments.last?.title ?? 'File') + ? message.copyWith(text: message.attachments.last?.title ?? '') : message; if (msg.text.length > textLimit) { msg = msg.copyWith(text: '${msg.text.substring(0, textLimit - 3)}...');