sync: turn IgnoreCase on by default with reverse field CaseSensitive

This commit is contained in:
nemunaire 2019-09-06 23:03:08 +02:00
commit 99fcc99e82
2 changed files with 15 additions and 15 deletions

View file

@ -112,7 +112,7 @@ func buildKeyFlag(exercice fic.Exercice, flag ExerciceFlag, flagline int, defaul
IdExercice: exercice.Id,
Label: flag.Label,
Help: flag.Help,
IgnoreCase: flag.IgnoreCase,
IgnoreCase: !flag.CaseSensitive,
ValidatorRegexp: validatorRegexp(flag.ValidatorRe),
Checksum: hashedFlag[:],
ChoicesCost: flag.ChoicesCost,