diff options
author | dec05eba <dec05eba@protonmail.com> | 2021-10-03 09:01:14 +0200 |
---|---|---|
committer | dec05eba <dec05eba@protonmail.com> | 2021-10-03 10:42:30 +0200 |
commit | be20a78ab01b924fc1261ff3c71361feb440e592 (patch) | |
tree | f4c54eac158ee92b5dca42d6967fa1b2b5135cde /plugins | |
parent | 522c6ea14cd2c1569ce5ff24c0241edba1835308 (diff) |
xv: fix missing search results, incorrect title to thumbnail matches
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/MediaGeneric.hpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/plugins/MediaGeneric.hpp b/plugins/MediaGeneric.hpp index fce0e97..ca111a4 100644 --- a/plugins/MediaGeneric.hpp +++ b/plugins/MediaGeneric.hpp @@ -34,7 +34,7 @@ namespace QuickMedia { class MediaGenericSearchPage : public Page { public: - MediaGenericSearchPage(Program *program, const char *website_url, sf::Vector2i thumbnail_max_size, bool cloudflare_bypass); + MediaGenericSearchPage(Program *program, const char *website_url, sf::Vector2i thumbnail_max_size, bool cloudflare_bypass, std::vector<CommandArg> extra_commands = {}); const char* get_title() const override { return "Search"; } bool search_is_filter() override { return false; } SearchResult search(const std::string &str, BodyItems &result_items) override; @@ -68,6 +68,7 @@ namespace QuickMedia { std::vector<MediaThumbnailQuery> related_media_thumbnail_queries; MediaRelatedCustomHandler related_custom_handler = nullptr; bool cloudflare_bypass; + std::vector<CommandArg> extra_commands; }; class MediaGenericRelatedPage : public RelatedVideosPage { |