Skip to content

Commit 86bf472

Browse files
committed
Corrected IsNewIncient flag when analyzing reports
1 parent 06ebe07 commit 86bf472

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Server/Coderr.Server.ReportAnalyzer/Inbound/Handlers/Reports/ReportAnalyzer.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ await _repository.StoreReportStats(new ReportMapping()
171171
_logger.Debug("Publishing now: " + report.ClientReportId);
172172
var e = new ReportAddedToIncident(summary, ConvertToCoreReport(report, applicationVersion), isReOpened)
173173
{
174-
IsNewIncident = true
174+
IsNewIncident = isNewIncident
175175
};
176176
await context.SendAsync(e);
177177

0 commit comments

Comments
 (0)