lowered Sonarr CF sync delay to 100-500ms

This commit is contained in:
Flaminel
2026-03-23 23:16:20 +02:00
parent 18dcee1a1c
commit e098ccc98e

View File

@@ -228,7 +228,7 @@ public sealed class CustomFormatScoreSyncer : IHandler
}
// Rate limit to avoid overloading the Sonarr API
await Task.Delay(Random.Shared.Next(500, 1500), cancellationToken);
await Task.Delay(Random.Shared.Next(100, 500), cancellationToken);
}
if (itemsInChunk.Count == 0)