From 9686e27ba3d363b798ca891fea5b74f6ea2ac7e5 Mon Sep 17 00:00:00 2001 From: Reimar Date: Wed, 2 Apr 2025 13:16:17 +0200 Subject: [PATCH] Fix not being able to fetch logs in a specific period --- backend/Api/BusinessLogic/DeviceLogic.cs | 2 +- backend/Api/Controllers/DeviceController.cs | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/backend/Api/BusinessLogic/DeviceLogic.cs b/backend/Api/BusinessLogic/DeviceLogic.cs index 7df4190..dc55b6c 100644 --- a/backend/Api/BusinessLogic/DeviceLogic.cs +++ b/backend/Api/BusinessLogic/DeviceLogic.cs @@ -85,7 +85,7 @@ namespace Api.BusinessLogic List rangedLogs = new List(); foreach (var log in logs) { - if (log.Date <= dateTimeRange.DateTimeStart && log.Date >= dateTimeRange.DateTimeEnd) { rangedLogs.Add(log); } + if (log.Date >= dateTimeRange.DateTimeStart && log.Date <= dateTimeRange.DateTimeEnd) { rangedLogs.Add(log); } } return new OkObjectResult(rangedLogs); diff --git a/backend/Api/Controllers/DeviceController.cs b/backend/Api/Controllers/DeviceController.cs index aa88c32..2b0dfd7 100644 --- a/backend/Api/Controllers/DeviceController.cs +++ b/backend/Api/Controllers/DeviceController.cs @@ -56,8 +56,8 @@ namespace Api.Controllers } else { - dateTimeRange.DateTimeStart = DateTime.Now; - dateTimeRange.DateTimeEnd = dateTimeRange.DateTimeStart; + dateTimeRange.DateTimeStart = DateTime.UnixEpoch; + dateTimeRange.DateTimeEnd = DateTime.Now; } return await _deviceLogic.GetLogs(dateTimeRange, deviceId); }