[3.2.0][应用升级] 优化升级触发逻辑

This commit is contained in:
renwj
2023-05-23 18:04:15 +08:00
parent 4008a1b7d7
commit 9ae90d9fbc
3 changed files with 19 additions and 7 deletions

View File

@@ -25,7 +25,11 @@ object CallerAutopilotCarConfigListenerManager : CallerBase<IMoGoAutopilotCarCon
mCarConfigResp = carConfigResp
M_LISTENERS.forEach {
val listener = it.value
listener.onAutopilotCarConfig(carConfigResp)
try {
listener.onAutopilotCarConfig(carConfigResp)
} catch (t: Throwable) {
t.printStackTrace()
}
}
}