aboutsummaryrefslogtreecommitdiff
path: root/plugins/Spotify.hpp
diff options
context:
space:
mode:
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;