search engine: podcast and episode should allow plural
This commit is contained in:
parent
f880897542
commit
0878a704d9
1 changed files with 2 additions and 0 deletions
|
|
@ -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,
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue