From 9db29aa541af31350cdced0552ce32d17deccdbe Mon Sep 17 00:00:00 2001 From: Flaminel Date: Sat, 21 Mar 2026 21:49:24 +0200 Subject: [PATCH] fixed stale comment in SeekerConfig --- .../Models/Configuration/Seeker/SeekerConfig.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/backend/Cleanuparr.Persistence/Models/Configuration/Seeker/SeekerConfig.cs b/code/backend/Cleanuparr.Persistence/Models/Configuration/Seeker/SeekerConfig.cs index 0d24999d..fb9f4ceb 100644 --- a/code/backend/Cleanuparr.Persistence/Models/Configuration/Seeker/SeekerConfig.cs +++ b/code/backend/Cleanuparr.Persistence/Models/Configuration/Seeker/SeekerConfig.cs @@ -23,7 +23,7 @@ public sealed record SeekerConfig : IConfig /// /// Interval in minutes between Seeker runs. Controls how frequently searches are triggered. - /// Valid values: 1, 2, 3, 4, 5, 6, 10 (must divide 60 evenly for cron compatibility). + /// Valid values: 2, 3, 4, 5, 6, 10, 12, 15, 20, 30 (must divide 60 evenly for cron compatibility). /// public ushort SearchInterval { get; set; } = Constants.DefaultSearchIntervalMinutes;