diff options
author | dec05eba <dec05eba@protonmail.com> | 2019-08-09 22:00:08 +0200 |
---|---|---|
committer | dec05eba <dec05eba@protonmail.com> | 2019-08-09 22:00:15 +0200 |
commit | c4ab196719e99e6ab9e323175124cf1d9aafa36e (patch) | |
tree | d508dadde5ad2f9d9362b29e82836c3368603ff3 /plugins | |
parent | 18048b410e2544a22ff923892d0c934b50905557 (diff) |
Next video in list to play should be next in playlist (if available)
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/Youtube.hpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/plugins/Youtube.hpp b/plugins/Youtube.hpp index 6fc6039..16f5870 100644 --- a/plugins/Youtube.hpp +++ b/plugins/Youtube.hpp @@ -12,5 +12,8 @@ namespace QuickMedia { int get_search_delay() const override { return 500; } bool search_suggestion_is_search() const override { return true; } Page get_page_after_search() const override { return Page::VIDEO_CONTENT; } + private: + std::string last_related_media_playlist_id; + BodyItems last_playlist_data; }; }
\ No newline at end of file |