From 6f426ba3894f4a82e44f78a81c86de2cb423259e Mon Sep 17 00:00:00 2001 From: Zhaoyuan Date: Mon, 28 Jun 2021 10:04:31 +0800 Subject: [PATCH] fix forcestopbundle life cycle --- services/abilitymgr_lite/src/ability_service.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/abilitymgr_lite/src/ability_service.cpp b/services/abilitymgr_lite/src/ability_service.cpp index 4cd2f32..fdd7885 100755 --- a/services/abilitymgr_lite/src/ability_service.cpp +++ b/services/abilitymgr_lite/src/ability_service.cpp @@ -233,7 +233,7 @@ int32_t AbilityService::ForceStopBundle(uint16_t token) return PARAM_NULL_ERROR; } if (launcherRecord->GetState() != SCHEDULE_ACTIVE) { - return SchedulerLifecycleInner(LAUNCHER_TOKEN, STATE_ACTIVE); + return SchedulerLifecycle(LAUNCHER_TOKEN, STATE_ACTIVE); } return ERR_OK; } -- Gitee