Fixed Tags IsEmpty not working
This commit is contained in:
parent
efe27ccab5
commit
0f8c9ed1f2
3 changed files with 9 additions and 18 deletions
|
|
@ -510,7 +510,7 @@ public static class SeriesFilter
|
|||
|
||||
return queries.Aggregate((q1, q2) => q1.Intersect(q2));
|
||||
case FilterComparison.IsEmpty:
|
||||
return queryable.Where(s => s.Metadata.Tags == null || s.Metadata.Tags.Count == 0);
|
||||
return queryable.Where(s => s.Metadata.Tags.Count == 0);
|
||||
case FilterComparison.GreaterThan:
|
||||
case FilterComparison.GreaterThanEqual:
|
||||
case FilterComparison.LessThan:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue