[6.6.0][FSM] refactor: FM 消息和 FSM 消息重复时过滤 先不加,产品先观察后再确认是否加过滤;

This commit is contained in:
aibingbing
2024-08-23 16:10:32 +08:00
parent a842b25cc7
commit 4f45b71284

View File

@@ -153,7 +153,8 @@ class DriverMsgBoxBubbleView @JvmOverloads constructor(
if(CallerAutoPilotStatusListenerManager.getState() == 2
|| CallerAutoPilotStatusListenerManager.getState() == 7){
// 6.6.0 ,因为 FSM 模块也会弹修改为只有没有 FSM 模块才弹
if (hasNoneFSMNode()) {
// 6.6.0 20240823 考虑到 FSM 初期消息不一定全,先不加限制,产品先观察功能后再考虑是否过滤
// if (hasNoneFSMNode()) {
//语音提示
try {
SoundPoolUtils.getSoundPool().playSoundWithRedId(context,R.raw.weak_net_tips)
@@ -162,7 +163,7 @@ class DriverMsgBoxBubbleView @JvmOverloads constructor(
}
//展示消息
showData(msgBoxBean)
}
//}
}
}
}