aboutsummaryrefslogtreecommitdiff
path: root/plugins/Page.hpp
diff options
context:
space:
mode:
authordec05eba <dec05eba@protonmail.com>2021-03-06 14:25:48 +0100
committerdec05eba <dec05eba@protonmail.com>2021-03-06 14:25:48 +0100
commitf8617f2043ea4ec536c4622df63a77b25268aeb0 (patch)
tree0db0d16a3bbc68c0564f7c7f9166f1cf71f1838b /plugins/Page.hpp
parentd3091854805fc625e2f6109f6f4af579420cd2a5 (diff)
Youtube: fix channel next page, add proper channel search (non filter search)
Diffstat (limited to 'plugins/Page.hpp')
-rw-r--r--plugins/Page.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/Page.hpp b/plugins/Page.hpp
index 54e7383..e720f14 100644
--- a/plugins/Page.hpp
+++ b/plugins/Page.hpp
@@ -84,7 +84,7 @@ namespace QuickMedia {
class LazyFetchPage : public Page {
public:
LazyFetchPage(Program *program) : Page(program) {}
- bool search_is_filter() override { return true; }
+ virtual bool search_is_filter() override { return true; }
bool is_lazy_fetch_page() const override { return true; }
virtual PluginResult lazy_fetch(BodyItems &result_items) = 0;
};