Skip to content

Commit

Permalink
revert: revert "fix: remove unneeded comparer on custom tags in filte…
Browse files Browse the repository at this point in the history
…r expression"

My bad. it was not unneeded, but necessary.

This reverts commit 873f85b.
  • Loading branch information
revam committed Dec 26, 2024
1 parent fb60709 commit e3089b0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Shoko.Server/Filters/FilterExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ public static Filterable ToFilterable(this SVR_AnimeSeries series)
TagsDelegate = () =>
series.AniDB_Anime?.Tags.Select(a => a.TagName).ToHashSet() ?? [],
CustomTagsDelegate = () =>
series.AniDB_Anime?.CustomTags.Select(a => a.TagName).ToHashSet() ?? [],
series.AniDB_Anime?.CustomTags.Select(a => a.TagName).ToHashSet(StringComparer.InvariantCultureIgnoreCase) ?? [],
YearsDelegate = () =>
series.Years,
SeasonsDelegate = () =>
Expand Down

0 comments on commit e3089b0

Please sign in to comment.