Skip to content

Commit cfa6fb3

Browse files
Fix favicons and integration check.
1 parent b4d9d13 commit cfa6fb3

File tree

10 files changed

+717
-469
lines changed

10 files changed

+717
-469
lines changed

backend/src/Notifo.Domain.Integrations/AmazonSES/IntegratedAmazonSESIntegration.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,6 @@ private async Task<IntegrationStatus> GetStatusAsync(List<string> fromEmails,
205205
};
206206

207207
var response = await amazonSES.GetIdentityVerificationAttributesAsync(request, ct);
208-
209208
var statuses = new List<IntegrationStatus>();
210209

211210
foreach (var emailAddress in fromEmails)
@@ -242,7 +241,6 @@ private async Task<List<string>> GetUnconfirmedAsync(List<string> fromEmails,
242241
};
243242

244243
var response = await amazonSES.GetIdentityVerificationAttributesAsync(request, ct);
245-
246244
var result = new List<string>();
247245

248246
foreach (var emailAddress in fromEmails)

backend/src/Notifo.Domain/Integrations/IntegrationManager.cs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -261,7 +261,9 @@ public async Task CheckAsync(
261261

262262
if (updates.Count > 0)
263263
{
264-
var command = new UpdateAppIntegrationStatus { AppId = app.Id, Status = updates };
264+
var command =
265+
new UpdateAppIntegrationStatus { Status = updates }
266+
.With(app.Id, app.Id);
265267

266268
await mediator.SendAsync(command, ct);
267269
}

0 commit comments

Comments
 (0)