Fixed CollectionTag IsEmpty not working correctly
This commit is contained in:
parent
834d86c67d
commit
6d97dc6609
1 changed files with 1 additions and 1 deletions
|
|
@ -707,7 +707,7 @@ public static class SeriesFilter
|
|||
|
||||
return queries.Aggregate((q1, q2) => q1.Intersect(q2));
|
||||
case FilterComparison.IsEmpty:
|
||||
return queryable.Where(s => collectionSeries.All(c => c != s.Id));
|
||||
return queryable.Where(s => s.Collections.Count == 0);
|
||||
case FilterComparison.GreaterThan:
|
||||
case FilterComparison.GreaterThanEqual:
|
||||
case FilterComparison.LessThan:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue