aboutsummaryrefslogtreecommitdiff
path: root/plugins/Spotify.hpp
diff options
context:
space:
mode:
authordec05eba <dec05eba@protonmail.com>2021-04-28 05:37:15 +0200
committerdec05eba <dec05eba@protonmail.com>2021-04-28 05:37:42 +0200
commit1b7abc7e819d055b3d0ea5be8967a1e381bb5d60 (patch)
tree503e6f67d933119df4512ef7186ed380b393f868 /plugins/Spotify.hpp
parentf045e579e1faa186ca0ebf6e6d1e562fbcd75727 (diff)
Add youtube subscriptions, etc
Diffstat (limited to 'plugins/Spotify.hpp')
-rw-r--r--plugins/Spotify.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/Spotify.hpp b/plugins/Spotify.hpp
index 89f8f3d..66cc992 100644
--- a/plugins/Spotify.hpp
+++ b/plugins/Spotify.hpp
@@ -41,7 +41,7 @@ namespace QuickMedia {
SpotifyAudioPage(Program *program, const std::string &url) : VideoPage(program), url(url) {}
const char* get_title() const override { return ""; }
std::unique_ptr<RelatedVideosPage> create_related_videos_page(Program *, const std::string &, const std::string &) override { return nullptr; }
- std::unique_ptr<LazyFetchPage> create_channels_page(Program *, const std::string &) override { return nullptr; }
+ std::unique_ptr<Page> create_channels_page(Program *, const std::string &) override { return nullptr; }
std::string get_url() override { return url; }
private:
std::string url;