diff --git a/UmlautAdaptarr/Services/Factory/ArrApplicationFactory.cs b/UmlautAdaptarr/Services/Factory/ArrApplicationFactory.cs
index 8836304..32a92ad 100644
--- a/UmlautAdaptarr/Services/Factory/ArrApplicationFactory.cs
+++ b/UmlautAdaptarr/Services/Factory/ArrApplicationFactory.cs
@@ -33,17 +33,17 @@ namespace UmlautAdaptarr.Services.Factory
///
/// Constructor for the ArrApplicationFactory.
///
- /// A dictionary of IArrApplication instances.
+ /// A dictionary of IArrApplication instances.
/// Logger Instanz
- public ArrApplicationFactory(IDictionary rrArrApplications, ILogger logger)
+ public ArrApplicationFactory(IDictionary arrArrApplications, ILogger logger)
{
_logger = logger;
try
{
- SonarrInstances = rrArrApplications.Values.OfType();
- LidarrInstances = rrArrApplications.Values.OfType();
- ReadarrInstances = rrArrApplications.Values.OfType();
- AllInstances = rrArrApplications;
+ SonarrInstances = arrArrApplications.Values.OfType();
+ LidarrInstances = arrArrApplications.Values.OfType();
+ ReadarrInstances = arrArrApplications.Values.OfType();
+ AllInstances = arrArrApplications;
if (AllInstances.Values.Count == 0)
{