Check for Chrome crashes

This commit is contained in:
M66B
2021-02-04 14:44:19 +01:00
parent 66ff193d84
commit 42c60eb2be

View File

@@ -1092,6 +1092,12 @@ public class Log {
*/
return false;
for (StackTraceElement ste : stack) {
String clazz = ste.getClassName();
if (clazz != null && clazz.startsWith("org.chromium.net."))
return false;
}
if (isDead(ex))
return false;