search engine: podcast and episode should allow plural

This commit is contained in:
Robert McRackan 2022-05-24 15:07:53 -04:00
parent f880897542
commit 0878a704d9

View File

@ -130,8 +130,10 @@ namespace LibationSearchEngine
["LiberatedError"] = lb => liberatedError(lb.Book), ["LiberatedError"] = lb => liberatedError(lb.Book),
["Podcast"] = lb => lb.Book.ContentType == ContentType.Episode, ["Podcast"] = lb => lb.Book.ContentType == ContentType.Episode,
["Podcasts"] = lb => lb.Book.ContentType == ContentType.Episode,
["IsPodcast"] = lb => lb.Book.ContentType == ContentType.Episode, ["IsPodcast"] = lb => lb.Book.ContentType == ContentType.Episode,
["Episode"] = lb => lb.Book.ContentType == ContentType.Episode, ["Episode"] = lb => lb.Book.ContentType == ContentType.Episode,
["Episodes"] = lb => lb.Book.ContentType == ContentType.Episode,
["IsEpisode"] = lb => lb.Book.ContentType == ContentType.Episode, ["IsEpisode"] = lb => lb.Book.ContentType == ContentType.Episode,
} }
); );