From 6c2edd225da357227d63f9c96d59a142d382223b Mon Sep 17 00:00:00 2001 From: Matt Nadareski Date: Wed, 17 Sep 2025 22:44:54 -0400 Subject: [PATCH] Fix the error statement too --- NDecrypt/Program.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/NDecrypt/Program.cs b/NDecrypt/Program.cs index 7b411f5..2d94433 100644 --- a/NDecrypt/Program.cs +++ b/NDecrypt/Program.cs @@ -46,7 +46,7 @@ namespace NDecrypt } else { - Console.WriteLine($"{args[i]} is not a file or folder. Please check your spelling and formatting and try again."); + Console.WriteLine($"{options.InputPaths[i]} is not a file or folder. Please check your spelling and formatting and try again."); } } }