From a703a12b569c8160baa88b3de5968445971d9c58 Mon Sep 17 00:00:00 2001 From: daiyunlong Date: Fri, 11 Jul 2025 17:50:37 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A4=A7=E5=B1=8F=E4=B8=89=E6=80=81=E6=A1=86?= =?UTF-8?q?=E5=80=92=E8=AE=A1=E6=97=B630s=E9=97=AE=E9=A2=98=E4=BF=AE?= =?UTF-8?q?=E5=A4=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: daiyunlong --- services/implementation/src/authentication_v2/dm_auth_state.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/implementation/src/authentication_v2/dm_auth_state.cpp b/services/implementation/src/authentication_v2/dm_auth_state.cpp index 9a0952c9c..df52e3b14 100644 --- a/services/implementation/src/authentication_v2/dm_auth_state.cpp +++ b/services/implementation/src/authentication_v2/dm_auth_state.cpp @@ -82,7 +82,7 @@ const std::map NEW_AND_OLD_REPLAY_MAPPING = { int32_t DmAuthState::GetTaskTimeout(std::shared_ptr context, const char* taskName, int32_t taskTimeOut) { LOGI("GetTaskTimeout, taskName: %{public}s, authType_: %{public}d", taskName, context->authType); - if (DmAuthState::IsImportAuthCodeCompatibility(context->authType)) { + if (AUTH_TYPE_IMPORT_AUTH_CODE == context->authType) { auto timeout = TASK_TIME_OUT_MAP.find(std::string(taskName)); if (timeout != TASK_TIME_OUT_MAP.end()) { return timeout->second; -- Gitee