From fe729abb2221a7b5756570834cc8a9690d3d41f0 Mon Sep 17 00:00:00 2001 From: HengBai Date: Thu, 4 Sep 2025 13:25:15 +0000 Subject: [PATCH] =?UTF-8?q?=E8=A7=A3=E5=86=B3=E6=9C=80=E5=90=8E=E4=B8=80?= =?UTF-8?q?=E6=AC=A1=E5=AE=89=E8=A3=85=E4=B8=BA=E6=9B=B4=E6=96=B0=E6=97=B6?= =?UTF-8?q?=E6=97=A0=E6=B3=95=E9=80=80=E5=87=BA=E5=BA=94=E7=94=A8=E8=BF=9E?= =?UTF-8?q?=E7=BB=AD=E5=AE=89=E8=A3=85=E5=9C=BA=E6=99=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: HengBai --- .../scene_recognize/src/continuous_app_install_recognizer.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ressched/scene_recognize/src/continuous_app_install_recognizer.cpp b/ressched/scene_recognize/src/continuous_app_install_recognizer.cpp index 7ebb9cb1..725510fe 100644 --- a/ressched/scene_recognize/src/continuous_app_install_recognizer.cpp +++ b/ressched/scene_recognize/src/continuous_app_install_recognizer.cpp @@ -45,7 +45,8 @@ void ContinuousAppInstallRecognizer::OnDispatchResource(uint32_t resType, int64_ ResType::ContinuousInstallStatus::START_CONTINUOUS_INSTALL, payload); isInContinuousInstall_.store(true); } - } else if (value == ResType::AppInstallStatus::APP_INSTALL_END) { + } else if (value == ResType::AppInstallStatus::APP_INSTALL_END || + value == ResType::AppInstallStatus::APP_CHANGED) { if (exitAppInstall_) { ffrt::skip(exitAppInstall_); } -- Gitee