mirror of
https://github.com/Biarity/Sieve.git
synced 2025-08-17 22:55:32 +02:00
Merge pull request #89 from awegg/master
Fix issue with spaces after comma and or filters
This commit is contained in:
@@ -13,7 +13,7 @@ namespace Sieve.Models
|
||||
where TFilterTerm : IFilterTerm, new()
|
||||
where TSortTerm : ISortTerm, new()
|
||||
{
|
||||
private const string EscapedCommaPattern = @"(?<!($|[^\\])(\\\\)*?\\),";
|
||||
private const string EscapedCommaPattern = @"(?<!($|[^\\])(\\\\)*?\\),\s*";
|
||||
|
||||
[DataMember]
|
||||
public string Filters { get; set; }
|
||||
|
Reference in New Issue
Block a user