fix: 消息页没有头像的容错(例如会员购的支付小助手)

This commit is contained in:
orz12
2024-07-20 19:28:04 +08:00
parent ea310acb7a
commit 1426f5f072

View File

@@ -201,11 +201,11 @@ class _WhisperPageState extends State<WhisperPage> {
width: 45,
height: 45,
type: 'avatar',
src: sessionList[i].accountInfo.face,
src: sessionList[i].accountInfo?.face,
),
),
title:
Text(sessionList[i].accountInfo.name),
title: Text(
sessionList[i].accountInfo?.name ?? ""),
subtitle: Text(content,
maxLines: 1,
overflow: TextOverflow.ellipsis,