put back trycatch, seems to work as intended now

This commit is contained in:
CWX
2025-01-26 18:14:59 +00:00
parent d2c57c1e6a
commit c7e0e58879
@@ -48,9 +48,9 @@ public class BotGenerationCacheService(
{
if (bots.Count > 0)
{
return bots.PopFirst();
try
{
return bots.PopFirst();
}
catch (Exception _)
{