[Fix]解决消息盒子中的消息没有文案展示的问题

This commit is contained in:
chenfufeng
2023-02-24 16:41:55 +08:00
parent 1a2a9cda34
commit 73bfa0fc23

View File

@@ -33,18 +33,20 @@ object V2xObuEventManager : IMoGoObuSaveMessageListener {
* @param tts 事件语音播报
*/
override fun onMoGoObuSaveMessage(type: String, content: String, tts: String, source: DataSourceType) {
CallerMsgBoxManager.saveMsgBox(
MsgBoxBean(
MsgBoxType.V2X,
V2XMsg(
type,
content,
tts
)
).apply {
sourceType = source
}
)
if (content.isNotEmpty()) {
CallerMsgBoxManager.saveMsgBox(
MsgBoxBean(
MsgBoxType.V2X,
V2XMsg(
type,
content,
tts
)
).apply {
sourceType = source
}
)
}
}
fun release() {