Skip to content

Commit

Permalink
fix: crash while loading webview
Browse files Browse the repository at this point in the history
  • Loading branch information
Rachit Mishra authored May 18, 2022
1 parent dadcfca commit 89cfc2a
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,8 @@ protected void doInBackgroundGuarded(Void... params) {
if (exception.getClass().getCanonicalName().contains("MissingWebViewPackageException")
|| (message != null
&& (message.contains("WebView provider")
|| message.contains("No WebView installed")))) {
|| message.contains("No WebView installed")
|| message.contains("Cannot load WebView")))) {
return null;
} else {
throw exception;
Expand Down

0 comments on commit 89cfc2a

Please sign in to comment.