From 1687e9d89b97bfe2b2cd9bafb33bd8061f2fce8f Mon Sep 17 00:00:00 2001 From: Polianin Nikita Date: Sun, 2 Feb 2025 04:49:25 +0300 Subject: [PATCH] fix: continue if in filter exist value --- Endpoint/Common/Services/CronUpdateSkipService.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Endpoint/Common/Services/CronUpdateSkipService.cs b/Endpoint/Common/Services/CronUpdateSkipService.cs index 4f44fea..50ccab3 100644 --- a/Endpoint/Common/Services/CronUpdateSkipService.cs +++ b/Endpoint/Common/Services/CronUpdateSkipService.cs @@ -56,7 +56,7 @@ public static class CronUpdateSkipService nextRunTime = next.Value; - if (!data.Filter(nextRunTime.DateTime).Any()) + if (data.Filter(nextRunTime.DateTime).Any()) continue; result.Add(nextRunTime);