From c9ea74267b66746c820dcf87071c49c4ef68242b Mon Sep 17 00:00:00 2001 From: pcjones Date: Mon, 30 Sep 2024 14:09:01 +0200 Subject: [PATCH] Fix typo --- UmlautAdaptarr/Services/Factory/ArrApplicationFactory.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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)