From b195bd7f2aaa741205c301f7815eec020e9d5478 Mon Sep 17 00:00:00 2001 From: xuxinchao Date: Tue, 1 Aug 2023 20:38:52 +0800 Subject: [PATCH] =?UTF-8?q?[3.4.0]=E7=BA=A2=E7=BB=BF=E7=81=AF=E6=9B=B4?= =?UTF-8?q?=E6=94=B9=E6=97=A5=E5=BF=97=E5=86=85=E5=AE=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../core/function/datacenter/v2x/TrafficLightDispatcher.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/function-impl/mogo-core-function-datacenter/src/main/java/com/mogo/eagle/core/function/datacenter/v2x/TrafficLightDispatcher.kt b/core/function-impl/mogo-core-function-datacenter/src/main/java/com/mogo/eagle/core/function/datacenter/v2x/TrafficLightDispatcher.kt index 71ca596c58..cbc8fceac5 100644 --- a/core/function-impl/mogo-core-function-datacenter/src/main/java/com/mogo/eagle/core/function/datacenter/v2x/TrafficLightDispatcher.kt +++ b/core/function-impl/mogo-core-function-datacenter/src/main/java/com/mogo/eagle/core/function/datacenter/v2x/TrafficLightDispatcher.kt @@ -239,7 +239,7 @@ class TrafficLightDispatcher : IMoGoAutopilotIdentifyListener, IMoGoTrafficLight override fun onTick(millisUntilFinished: Long) { if ((System.currentTimeMillis() - lastLightTime) > 1500) { //隐藏红绿灯显示 - hide("倒计时结束隐藏", DataSourceType.TELEMATIC) + hide("倒计时结束隐藏", lightSource) lightCountDownTimer?.cancel() lightCountDownTimer = null } @@ -247,7 +247,7 @@ class TrafficLightDispatcher : IMoGoAutopilotIdentifyListener, IMoGoTrafficLight override fun onFinish() { //隐藏红绿灯显示 - hide("倒计时结束隐藏", DataSourceType.TELEMATIC) + hide("倒计时结束隐藏", lightSource) lightCountDownTimer?.cancel() lightCountDownTimer = null }