Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 41a9fd55 authored by Jacek Surazski's avatar Jacek Surazski
Browse files

timestamp field in ApplicationErrorReport was not getting intitialized on ANRs

parent 3ae6162d
Loading
Loading
Loading
Loading
+2 −1
Original line number Original line Diff line number Diff line
@@ -113,7 +113,8 @@ class AppNotRespondingDialog extends BaseErrorDialog {
                        ProcessRecord app = mProc;
                        ProcessRecord app = mProc;


                        if (msg.what == WAIT_AND_REPORT) {
                        if (msg.what == WAIT_AND_REPORT) {
                            appErrorIntent = mService.createAppErrorIntentLocked(app, 0, null);
                            appErrorIntent = mService.createAppErrorIntentLocked(app,
                                    System.currentTimeMillis(), null);
                        }
                        }


                        app.notResponding = false;
                        app.notResponding = false;