Github user agrieve commented on a diff in the pull request:

    https://github.com/apache/cordova-android/pull/149#discussion_r23228419
  
    --- Diff: framework/src/org/apache/cordova/CordovaWebViewClient.java ---
    @@ -171,8 +171,13 @@ public void onPageStarted(WebView view, String url, 
Bitmap favicon) {
         public void onPageFinished(WebView view, String url) {
             super.onPageFinished(view, url);
             // Ignore excessive calls.
    -        if (!isCurrentlyLoading) {
    -            return;
    +        //     On KitKat, loading about:blank does not invoke 
WebViewClient#onPageStarted
    +        //     So do not check isCurrentLoading if app is running on KitKat
    +        //         https://code.google.com/p/android/issues/detail?id=65701
    +        if (android.os.Build.VERSION.SDK_INT != 
android.os.Build.VERSION_CODES.KITKAT){
    --- End diff --
    
    You don't need to re-request a PR, but you do need to make the change an 
upload it to github (either as a separate commit, or by force-pushing an 
ammended commit). Then, add a comment to let me know you've done so and I'll 
pull it in (once you do it, it should show up on this interface).


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to