Catalog filtering by language works via Xapian

This commit is contained in:
Veloman Yunkan
2021-04-12 12:29:06 +04:00
parent 0c0a37073b
commit 7ccd9ffcce
3 changed files with 32 additions and 1 deletions

View File

@ -117,6 +117,9 @@ class Filter {
bool hasCategory() const;
const std::string& getCategory() const { return _category; }
bool hasLang() const;
const std::string& getLang() const { return _lang; }
private:
friend class Library;