diff --git a/src/FilterLists.Agent/Features/Urls/BuildGitHubIssueBody.cs b/src/FilterLists.Agent/Features/Urls/BuildGitHubIssueBody.cs
index 3d958115a..bd5471cdd 100644
--- a/src/FilterLists.Agent/Features/Urls/BuildGitHubIssueBody.cs
+++ b/src/FilterLists.Agent/Features/Urls/BuildGitHubIssueBody.cs
@@ -28,7 +28,8 @@ protected override string Handle(Command request)
body.Append(IssueHeader);
foreach (var fileReults in request.DataFileUrlValidationResults)
{
- body.Append($"
");
+ body.Append(
+ $"");
body.Append("");
foreach (var result in fileReults.Results)
{
diff --git a/src/FilterLists.Agent/Features/Urls/ValidateAllUrls.cs b/src/FilterLists.Agent/Features/Urls/ValidateAllUrls.cs
index 097499e77..f1a7eb668 100644
--- a/src/FilterLists.Agent/Features/Urls/ValidateAllUrls.cs
+++ b/src/FilterLists.Agent/Features/Urls/ValidateAllUrls.cs
@@ -41,7 +41,8 @@ protected override async Task Handle(Command request, CancellationToken cancella
results.Add(new DataFileUrlValidationResults("FilterList.json", listUrlErrors));
var maintainerUrls = await _repo.GetAllAsync();
- var maintainerUrlErrors = await _mediator.Send(new ValidateUrls.Command(maintainerUrls), cancellationToken);
+ var maintainerUrlErrors =
+ await _mediator.Send(new ValidateUrls.Command(maintainerUrls), cancellationToken);
if (maintainerUrlErrors.Any())
results.Add(new DataFileUrlValidationResults("Maintainer.json", maintainerUrlErrors));
@@ -55,7 +56,7 @@ protected override async Task Handle(Command request, CancellationToken cancella
if (syntaxUrlErrors.Any())
results.Add(new DataFileUrlValidationResults("Syntax.json", syntaxUrlErrors));
- if(results.Any())
+ if (results.Any())
await _mediator.Send(new CreateOrUpdateUrlValidationIssue.Command(results), cancellationToken);
else
await _mediator.Send(new CloseUrlValidationIssue.Command(), cancellationToken);