From fa84f217e53401759f4604874780791450b1935f Mon Sep 17 00:00:00 2001 From: xuxinchao Date: Mon, 17 Jul 2023 17:32:16 +0800 Subject: [PATCH] =?UTF-8?q?[3.4.0]=E4=BA=91=E8=B0=83=E5=BA=A6Bug=E4=BF=AE?= =?UTF-8?q?=E5=A4=8D=EF=BC=8C=E5=BD=93=E4=BA=91=E8=B0=83=E5=BA=A6=E5=8F=96?= =?UTF-8?q?=E6=B6=88=E7=A1=AE=E8=AE=A4=E5=90=8E=EF=BC=8C=E4=BA=BA=E5=B7=A5?= =?UTF-8?q?=E6=8E=A5=E7=AE=A1=E4=B8=8D=E5=86=8D=E5=BC=B9=E5=87=BA=E9=87=8D?= =?UTF-8?q?=E6=96=B0=E8=BF=9B=E5=85=A5=E8=87=AA=E9=A9=BE=E5=BC=B9=E7=AA=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../function/biz/dispatch/DispatchAutoPilotManager.kt | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/core/function-impl/mogo-core-function-biz/src/main/java/com/mogo/eagle/function/biz/dispatch/DispatchAutoPilotManager.kt b/core/function-impl/mogo-core-function-biz/src/main/java/com/mogo/eagle/function/biz/dispatch/DispatchAutoPilotManager.kt index 4305686ca9..6acdcc1515 100644 --- a/core/function-impl/mogo-core-function-biz/src/main/java/com/mogo/eagle/function/biz/dispatch/DispatchAutoPilotManager.kt +++ b/core/function-impl/mogo-core-function-biz/src/main/java/com/mogo/eagle/function/biz/dispatch/DispatchAutoPilotManager.kt @@ -224,8 +224,13 @@ class DispatchAutoPilotManager private constructor() : onSuccess = { //取消自动驾驶 CallerAutoPilotControlManager.cancelAutoPilot() + isDispatch = false + ToastUtils.showShort("云调度取消确认成功") CallerLogger.i("$M_BIZ$TAG","stopAffirm 取消自动驾驶") - }, onError = {}) + }, onError = {error -> + ToastUtils.showShort("停止调度确认失败${error}") + } + ) } }