From 69fa09e23ad68a78eb5593f65136f96d2877da92 Mon Sep 17 00:00:00 2001 From: Flaminel Date: Thu, 9 Apr 2026 14:41:32 +0300 Subject: [PATCH] Fix disabled arr instances being processed in some cases (#554) --- .../Cleanuparr.Infrastructure/Features/Jobs/GenericHandler.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/backend/Cleanuparr.Infrastructure/Features/Jobs/GenericHandler.cs b/code/backend/Cleanuparr.Infrastructure/Features/Jobs/GenericHandler.cs index e8b385fd..155369ba 100644 --- a/code/backend/Cleanuparr.Infrastructure/Features/Jobs/GenericHandler.cs +++ b/code/backend/Cleanuparr.Infrastructure/Features/Jobs/GenericHandler.cs @@ -105,7 +105,7 @@ public abstract class GenericHandler : IHandler return; } - foreach (ArrInstance arrInstance in config.Instances) + foreach (ArrInstance arrInstance in enabledInstances) { try {