diff options
author | dec05eba <dec05eba@protonmail.com> | 2020-09-13 17:58:35 +0200 |
---|---|---|
committer | dec05eba <dec05eba@protonmail.com> | 2020-09-13 17:58:35 +0200 |
commit | a73eb41773d3f70867358bbef26563ca431b0908 (patch) | |
tree | f12c769564ae143cdbac25ea8c18ee2dcfc625a9 /plugins | |
parent | 9d4879215bb7b3b89122a930f86248cc405536a1 (diff) |
Add thumbnails to mangatown search results
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/Mangatown.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/Mangatown.hpp b/plugins/Mangatown.hpp index bfb1f6a..2a22ccd 100644 --- a/plugins/Mangatown.hpp +++ b/plugins/Mangatown.hpp @@ -11,9 +11,9 @@ namespace QuickMedia { SearchResult search(const std::string &url, BodyItems &result_items) override; SuggestionResult update_search_suggestions(const std::string &text, BodyItems &result_items) override; ImageResult get_number_of_images(const std::string &url, int &num_images) override; - bool search_suggestions_has_thumbnails() const override { return false; } + bool search_suggestions_has_thumbnails() const override { return true; } bool search_results_has_thumbnails() const override { return false; } - int get_search_delay() const override { return 150; } + int get_search_delay() const override { return 200; } Page get_page_after_search() const override { return Page::EPISODE_LIST; } ImageResult for_each_page_in_chapter(const std::string &chapter_url, PageCallback callback) override; |