🐛 Fix call messages

This commit is contained in:
LittleSheep 2025-05-26 01:44:50 +08:00
parent f39a066f71
commit fed8171b36

View File

@ -418,7 +418,7 @@ class _MessageItemContent extends StatelessWidget {
}
static bool hasContent(SnChatMessage item) {
return item.type == 'text' && (item.content?.isNotEmpty ?? false);
return item.type != 'text' || (item.content?.isNotEmpty ?? false);
}
}