From 34ca4bf15081ad88de96dfbd810c6a35dcfbb32c Mon Sep 17 00:00:00 2001 From: Qstick Date: Wed, 15 Nov 2017 21:27:41 -0500 Subject: [PATCH] Fix: Capitalization in CustomScript.cs --- src/NzbDrone.Core/Notifications/CustomScript/CustomScript.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/NzbDrone.Core/Notifications/CustomScript/CustomScript.cs b/src/NzbDrone.Core/Notifications/CustomScript/CustomScript.cs index 99048708d..97a45f695 100644 --- a/src/NzbDrone.Core/Notifications/CustomScript/CustomScript.cs +++ b/src/NzbDrone.Core/Notifications/CustomScript/CustomScript.cs @@ -63,7 +63,7 @@ namespace NzbDrone.Core.Notifications.CustomScript var environmentVariables = new StringDictionary(); environmentVariables.Add("Lidarr_EventType", "Download"); - environmentVariables.Add("LIdarr_IsUpgrade", message.OldFiles.Any().ToString()); + environmentVariables.Add("Lidarr_IsUpgrade", message.OldFiles.Any().ToString()); environmentVariables.Add("Lidarr_Artist_Id", artist.Id.ToString()); environmentVariables.Add("Lidarr_Artist_Name", artist.Name); environmentVariables.Add("Lidarr_Artist_Path", artist.Path);