diff --git a/UmlautAdaptarr/Services/Factory/ArrApplicationFactory.cs b/UmlautAdaptarr/Services/Factory/ArrApplicationFactory.cs index 2fe4ddc..8836304 100644 --- a/UmlautAdaptarr/Services/Factory/ArrApplicationFactory.cs +++ b/UmlautAdaptarr/Services/Factory/ArrApplicationFactory.cs @@ -45,9 +45,9 @@ namespace UmlautAdaptarr.Services.Factory ReadarrInstances = rrArrApplications.Values.OfType(); AllInstances = rrArrApplications; - if (!AllInstances.Values.Any()) + if (AllInstances.Values.Count == 0) { - throw new Exception("No RrApplication could be successfully initialized. This could be due to a faulty configuration"); + throw new Exception("No ArrApplication could be successfully initialized. This could be due to a faulty configuration"); } } catch (Exception e)