Add episode/podcast search engine bool

This commit is contained in:
Robert McRackan 2021-09-01 16:56:09 -04:00
parent ad87f1851e
commit 7b9c5c0f4f
3 changed files with 7 additions and 2 deletions

View file

@ -129,6 +129,11 @@ namespace LibationSearchEngine
["IsLiberated"] = lb => isLiberated(lb.Book),
["Liberated"] = lb => isLiberated(lb.Book),
["LiberatedError"] = lb => liberatedError(lb.Book),
["Podcast"] = lb => lb.Book.ContentType == ContentType.Episode,
["IsPodcast"] = lb => lb.Book.ContentType == ContentType.Episode,
["Episode"] = lb => lb.Book.ContentType == ContentType.Episode,
["IsEpisode"] = lb => lb.Book.ContentType == ContentType.Episode,
}
);