From a9503bbca31bd7425210cd98f677b3794834fadd Mon Sep 17 00:00:00 2001 From: Flaminel Date: Wed, 25 Jun 2025 20:14:45 +0300 Subject: [PATCH] fixed blocklist reload time --- .../Features/ContentBlocker/BlocklistProvider.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/backend/Cleanuparr.Infrastructure/Features/ContentBlocker/BlocklistProvider.cs b/code/backend/Cleanuparr.Infrastructure/Features/ContentBlocker/BlocklistProvider.cs index 9fe6dab6..af225b48 100644 --- a/code/backend/Cleanuparr.Infrastructure/Features/ContentBlocker/BlocklistProvider.cs +++ b/code/backend/Cleanuparr.Infrastructure/Features/ContentBlocker/BlocklistProvider.cs @@ -24,7 +24,7 @@ public sealed class BlocklistProvider private readonly IMemoryCache _cache; private readonly Dictionary _configHashes = new(); private static DateTime _lastLoadTime = DateTime.MinValue; - private const int LoadIntervalHours = 6; + private const int LoadIntervalHours = 4; public BlocklistProvider( ILogger logger,