refactor: save current workspace state including FinlyticAnalyzer fixes, FinlyticApp trade route alignment, and DTO audit documentation

This commit is contained in:
2026-08-12 18:30:42 +02:00
parent a9553e9fbf
commit 3d8af3940b
163 changed files with 3421 additions and 1751 deletions
+2 -2
View File
@@ -61,8 +61,8 @@ public class N8nService : IN8nService
if (string.IsNullOrWhiteSpace(targetUrl))
{
targetUrl = _configuration["N8N__WebhookUrl"]
?? _configuration["N8N:WebhookUrl"];
targetUrl = _configuration["N8N:ArticleExtractionUrl"]
?? _configuration["N8N__ArticleExtractionUrl"];
}
if (string.IsNullOrWhiteSpace(targetUrl))
+3 -1
View File
@@ -349,8 +349,10 @@ public class NewsDbService : INewsDbService
// 2. Date Filter
if (date.HasValue)
{
var targetDate = DateTime.SpecifyKind(date.Value.Date, DateTimeKind.Utc);
// Erstelle ein exaktes UTC-Datum von 00:00:00 Uhr am gebuchten Tag
var targetDate = new DateTime(date.Value.Year, date.Value.Month, date.Value.Day, 0, 0, 0, DateTimeKind.Utc);
var nextDate = targetDate.AddDays(1);
query = query.Where(a => a.PublishedAt >= targetDate && a.PublishedAt < nextDate);
}