We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4c14ca1 commit af36328Copy full SHA for af36328
backtrace-library/src/main/java/backtraceio/library/anr/BacktraceAppExitInfoSenderHandler.java
@@ -140,11 +140,10 @@ private boolean isSupportedTypeOfApplicationExit(ExitInfo appExitInfo) {
140
private boolean shouldProcessAppExitInfo(ExitInfo appExitInfo) {
141
long lastAnrTimestamp = this.anrAppExitInfoState.getLastTimestamp();
142
long anrTimestamp = appExitInfo.getTimestamp();
143
-
144
-// TODO: uncomment
145
-// if (lastAnrTimestamp >= anrTimestamp) {
146
-// return false;
147
-// }
+
+ if (lastAnrTimestamp >= anrTimestamp) {
+ return false;
+ }
148
149
return isSupportedTypeOfApplicationExit(appExitInfo);
150
}
0 commit comments