1
0
Fork 0
mirror of https://github.com/Jackett/Jackett synced 2025-02-24 23:22:46 +00:00

CommandLineParser: Case insensitive

This commit is contained in:
flightlevel 2018-06-17 14:12:52 +10:00
parent b04ee56612
commit e7098d01c5

View file

@ -27,7 +27,7 @@ namespace Jackett.Server
{
AppDomain.CurrentDomain.ProcessExit += CurrentDomain_ProcessExit;
var commandLineParser = new Parser();
var commandLineParser = new Parser(settings => settings.CaseSensitive = false);
var optionsResult = commandLineParser.ParseArguments<ConsoleOptions>(args);
var runtimeDictionary = new Dictionary<string, string>();
ConsoleOptions consoleOptions = new ConsoleOptions();