From 668b29c0683e5e2b65a3f507678fac010639b005 Mon Sep 17 00:00:00 2001 From: Jeas0001 Date: Mon, 31 Mar 2025 10:50:21 +0200 Subject: [PATCH] Undid last commit from me --- backend/Api/BusinessLogic/DeviceLogic.cs | 2 -- 1 file changed, 2 deletions(-) diff --git a/backend/Api/BusinessLogic/DeviceLogic.cs b/backend/Api/BusinessLogic/DeviceLogic.cs index 4f0eb50..ae4be2c 100644 --- a/backend/Api/BusinessLogic/DeviceLogic.cs +++ b/backend/Api/BusinessLogic/DeviceLogic.cs @@ -76,8 +76,6 @@ namespace Api.BusinessLogic if (log.Date <= dateTimeRange.DateTimeStart && log.Date >= dateTimeRange.DateTimeEnd) { rangedLogs.Add(log); } } - if (rangedLogs.Count == 0) { return new ConflictObjectResult(new { message = "There is no logs for that periode" }); } - return new OkObjectResult(rangedLogs); }