Skip to content
This repository was archived by the owner on Nov 1, 2023. It is now read-only.

Commit 42dd8fe

Browse files
committed
build fix
1 parent 1524534 commit 42dd8fe

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/ApiService/ApiService/onefuzzlib/NotificationOperations.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,8 @@ public NotificationOperations(ILogTracer log, IOnefuzzContext context)
2020
public async Async.Task NewFiles(Container container, string filename, bool isLastRetryAttempt) {
2121
var notifications = GetNotifications(container);
2222
var hasNotifications = await notifications.AnyAsync();
23-
23+
var reportOrRegression = await _context.Reports.GetReportOrRegression(container, filename, expectReports: hasNotifications);
2424
if (hasNotifications) {
25-
var reportOrRegression = await _context.Reports.GetReportOrRegression(container, filename, expectReports: hasNotifications);
2625
var done = new List<NotificationTemplate>();
2726
await foreach (var notification in notifications) {
2827
if (done.Contains(notification.Config)) {

0 commit comments

Comments
 (0)