Skip reporting OOM

pull/188/head
M66B 4 years ago
parent 85bceae8d7
commit 36a6c5a7a4

@ -1192,6 +1192,9 @@ public class Log {
static void unexpectedError(FragmentManager manager, Throwable ex, boolean report) {
Log.e(ex);
if (ex instanceof OutOfMemoryError)
report = false;
Bundle args = new Bundle();
args.putSerializable("ex", ex);
args.putBoolean("report", report);

Loading…
Cancel
Save