From 19f09fdb868401f10f2beda186362edbeb37008a Mon Sep 17 00:00:00 2001 From: Mark McDowall Date: Thu, 3 Sep 2015 14:57:38 -0700 Subject: [PATCH] Path and Arguments were set to the same number for CustomScript --- .../Notifications/CustomScript/CustomScriptSettings.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/NzbDrone.Core/Notifications/CustomScript/CustomScriptSettings.cs b/src/NzbDrone.Core/Notifications/CustomScript/CustomScriptSettings.cs index fca85951c..55a317859 100644 --- a/src/NzbDrone.Core/Notifications/CustomScript/CustomScriptSettings.cs +++ b/src/NzbDrone.Core/Notifications/CustomScript/CustomScriptSettings.cs @@ -22,7 +22,7 @@ namespace NzbDrone.Core.Notifications.CustomScript [FieldDefinition(0, Label = "Path", Type = FieldType.Path)] public String Path { get; set; } - [FieldDefinition(0, Label = "Arguments", HelpText = "Arguments to pass to the script")] + [FieldDefinition(1, Label = "Arguments", HelpText = "Arguments to pass to the script")] public String Arguments { get; set; } public NzbDroneValidationResult Validate()