You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@weex.apache.org by GitBox <gi...@apache.org> on 2019/04/01 09:54:26 UTC

[GitHub] [incubator-weex] YorkShen commented on a change in pull request #2254: [Android] Fix blank page when JS exception raised before batch end.

YorkShen commented on a change in pull request #2254: [Android] Fix blank page when JS exception raised before batch end.
URL: https://github.com/apache/incubator-weex/pull/2254#discussion_r270792941
 
 

 ##########
 File path: android/sdk/src/main/java/com/taobao/weex/ui/WXRenderManager.java
 ##########
 @@ -144,6 +165,15 @@ public void postGraphicAction(final String instanceId, final BasicGraphicAction
       return;
     }
 
+    if (mCurrentBatchInstanceId != null && instanceId != null && !mCurrentBatchInstanceId.equals(instanceId) && mBatchActions.size() > 0) {
 
 Review comment:
   Will your change makes `public void postGraphicAction(final String instanceId, final BasicGraphicAction action)` behaviour unexpectedly if there are two weex instance as you only use one field called `mCurrentBatchInstanceId`?

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services