OpenHarmony OpenHarmony 4月13号提交补丁一直未进行审核,没有通过,也没有不通过。

修复ARM64编译,打印格式化类型错误 · Pull Request !2202 · OpenHarmony/ace_ace_engine - Gitee.com
​​​​​​​
adapter/ohos/osal/js_accessibility_manager.cpp 
已阅

@@ -862,7 +862,7 @@ void JsAccessibilityManager::SearchElementInfosByText(const long elementId, cons
862 862 }
863 863 }
864 864
865 LOGI("SetSearchElementInfoByTextResult infos.size(%{public}d)", infos.size());
865 LOGI("SetSearchElementInfoByTextResult infos.size(%{public}lu)", infos.size());
866 866 callback.SetSearchElementInfoByTextResult(infos, requestId);
867 867 }
868 868


 +3 -3 frameworks/bridge/declarative_frontend/jsview/js_web_controller.cpp 
已阅

@@ -188,12 +188,12 @@ void JSWebController::LoadUrl(const JSCallbackInfo& args)
188 188 JSRef<JSObject> obj = JSRef<JSObject>::Cast(jsValue);
189 189 std::string key;
190 190 if (!ConvertFromJSValue(obj->GetProperty("headerKey"), key)) {
191 LOGW("can't find key at index %{public}d of additionalHttpHeaders, so skip it.", i);
191 LOGW("can't find key at index %{public}zu of additionalHttpHeaders, so skip it.", i);
192 192 continue;
193 193 }
194 194 std::string value;
195 195 if (!ConvertFromJSValue(obj->GetProperty("headerValue"), value)) {
196 LOGW("can't find value at index %{public}d of additionalHttpHeaders, so skip it.", i);
196 LOGW("can't find value at index %{public}zu of additionalHttpHeaders, so skip it.", i);
197 197 continue;
198 198 }
199 199 httpHeaders[key] = value;
@@ -534,4 +534,4 @@ void JSWebController::RequestFocus(const JSCallbackInfo& args)
534 534 webController_->RequestFocus();
535 535 }
536 536 }
537 } // namespace OHOS::Ace::Framework
\ No newline at end of file
537 } // namespace OHOS::Ace::Framework


登录 - Gitee.comhttps://gitee.com/openharmony/miscservices_request/commit/2e942975bef7a804ebeb4fdb85ce1daee76e319f

某些人4月17号提交同样的补丁即被立即审核通过,这中间经历了什么,谁知道呢

登录 - Gitee.comhttps://gitee.com/zhangfanfan2/ace_ace_engine/commit/2853576be179412a0336da7ee91fdea7976b1b74

Logo

社区规范:仅讨论OpenHarmony相关问题。

更多推荐