mirror of
https://github.com/M66B/FairEmail.git
synced 2026-03-31 06:08:31 +02:00
Removed extra WebView check
This commit is contained in:
@@ -518,9 +518,10 @@ public class DebugHelper {
|
||||
WebViewEx.isFeatureSupported(context, WebViewFeature.ALGORITHMIC_DARKENING)));
|
||||
try {
|
||||
PackageInfo pkg = WebViewCompat.getCurrentWebViewPackage(context);
|
||||
sb.append(String.format("WebView %d/%s\r\n",
|
||||
sb.append(String.format("WebView %d/%s has=%b\r\n",
|
||||
pkg == null ? -1 : pkg.versionCode,
|
||||
pkg == null ? null : pkg.versionName));
|
||||
pkg == null ? null : pkg.versionName,
|
||||
Helper.hasWebView(context)));
|
||||
} catch (Throwable ex) {
|
||||
sb.append(ex).append("\r\n");
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user