Skip to content

Commit

Permalink
feat: populate app.isLaunching field in JVM events
Browse files Browse the repository at this point in the history
  • Loading branch information
fractalwrench committed Mar 4, 2021
1 parent 024b231 commit caa197e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -648,7 +648,7 @@ void notifyUnhandledException(@NonNull Throwable exc, Metadata metadata,
int consecutiveLaunchCrashes = lastRunInfo == null ? 0
: lastRunInfo.getConsecutiveLaunchCrashes();
boolean launching = launchCrashTracker.isLaunching();
LastRunInfo runInfo = new LastRunInfo(consecutiveLaunchCrashes, true, launching);
LastRunInfo runInfo = new LastRunInfo(consecutiveLaunchCrashes + 1, true, launching);
lastRunInfoStore.persist(runInfo);
}

Expand Down

0 comments on commit caa197e

Please sign in to comment.