Commit 8f28442d authored by VTHIEN's avatar VTHIEN

fixed

parent 18e547fd
......@@ -501,9 +501,9 @@ namespace Sieve.Services
case FilterOperator.LessThanOrEqualTo:
return sResult + "<=" + value;
case FilterOperator.Contains:
return sResult + ".Contains(" + value + ")";
return sResult + ".Contains(" + value.ToLower() + ")";
case FilterOperator.StartsWith:
return sResult + ".Contains(" + value + ")";
return sResult + ".Contains(" + value.ToLower() + ")";
default:
return sResult + "=" + value;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment