From 8e13053239dc49248edaecadf62bfee6231f3eef Mon Sep 17 00:00:00 2001 From: liweifeng Date: Tue, 20 Jun 2023 14:03:36 +0800 Subject: [PATCH] =?UTF-8?q?=E6=95=B0=E7=BB=84=E5=86=85=E5=85=83=E7=B4=A0?= =?UTF-8?q?=E8=A7=A3=E6=9E=90=E5=A4=B1=E8=B4=A5=E6=97=B6=EF=BC=8C=E6=8A=A5?= =?UTF-8?q?=E9=94=99=E6=94=B9=E4=B8=BA=E5=BF=BD=E7=95=A5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: liweifeng Change-Id: I99afd0e3a6964a0b1b052a8e5a3d3c8ed21c9b94 --- .../native/ability/native/form_runtime/js_form_extension.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frameworks/native/ability/native/form_runtime/js_form_extension.cpp b/frameworks/native/ability/native/form_runtime/js_form_extension.cpp index abf49d60496..f7eb8a649b1 100644 --- a/frameworks/native/ability/native/form_runtime/js_form_extension.cpp +++ b/frameworks/native/ability/native/form_runtime/js_form_extension.cpp @@ -481,7 +481,7 @@ bool JsFormExtension::ConvertFromDataProxies(NativeEngine& engine, NativeValue* FormDataProxy formDataProxy("", ""); if (!ConvertFormDataProxy(engine, array->GetElement(i), formDataProxy)) { HILOG_ERROR("GetElement from array [%{public}u] error", i); - return false; + continue; } formDataProxies.push_back(formDataProxy); } -- Gitee