Fixed Tags IsEmpty not working

This commit is contained in:
Joseph Milazzo 2025-04-11 09:25:09 -05:00
parent efe27ccab5
commit 0f8c9ed1f2
3 changed files with 9 additions and 18 deletions

View file

@ -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: