Skip to content

Commit

Permalink
Fix SDK version check for onPageFinished() call. It should be availab…
Browse files Browse the repository at this point in the history
  • Loading branch information
Googler authored and hoisie committed Nov 17, 2021
1 parent 326991f commit c00f645
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -277,7 +277,7 @@ private void performSuccessfulPageLoad(String url) {
webChromeClient.onReceivedTitle(realWebView, url);
webChromeClient.onProgressChanged(realWebView, 100);
}
if (webViewClient != null && VERSION.SDK_INT >= 23) {
if (webViewClient != null) {
webViewClient.onPageFinished(realWebView, url);
}
});
Expand Down

0 comments on commit c00f645

Please sign in to comment.