From fc59de2fa7c822057848e679a427dcccbf5105e4 Mon Sep 17 00:00:00 2001 From: fangJinliang1 Date: Mon, 23 May 2022 21:24:51 +0800 Subject: [PATCH] codedex modify Signed-off-by: fangJinliang1 Change-Id: I49295ed8b8aa278f5c534dd4ff90376210929d26 Signed-off-by: fangJinliang1 --- frameworks/ans/native/src/notification_request.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frameworks/ans/native/src/notification_request.cpp b/frameworks/ans/native/src/notification_request.cpp index 145535209..d6c194ae1 100644 --- a/frameworks/ans/native/src/notification_request.cpp +++ b/frameworks/ans/native/src/notification_request.cpp @@ -1638,7 +1638,7 @@ void NotificationRequest::ConvertJsonToNum(NotificationRequest *target, const nl } if (jsonObject.find("creatorUid") != jsonEnd) { - target->creatorUid_ = static_cast(jsonObject.at("creatorUid").get()); + target->creatorUid_ = jsonObject.at("creatorUid").get(); } if (jsonObject.find("creatorPid") != jsonEnd) { -- Gitee