Skip to content

Commit a191f19

Browse files
committed
actually fixed
1 parent e85bdad commit a191f19

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/GoatQuery/src/Evaluator/FilterEvaluator.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -621,7 +621,7 @@ private static Result<ConstantExpression> CreateStringOrEnumConstant(string valu
621621

622622
private static Result<ConstantExpression> ConvertStringToEnum(string value, Type actualType, Type targetType)
623623
{
624-
if (Enum.TryParse(actualType, value, true, out var enumValue))
624+
if (Enum.TryParse(actualType, value, out var enumValue))
625625
{
626626
return Result.Ok(Expression.Constant(enumValue, targetType));
627627
}

0 commit comments

Comments
 (0)