Check for Chrome crashes

pull/194/head
M66B 4 years ago
parent 66ff193d84
commit 42c60eb2be

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

Loading…
Cancel
Save