aboutsummaryrefslogtreecommitdiff
path: root/plugins/Page.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/Page.hpp')
-rw-r--r--plugins/Page.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/Page.hpp b/plugins/Page.hpp
index 1b8a391..64c24c3 100644
--- a/plugins/Page.hpp
+++ b/plugins/Page.hpp
@@ -24,7 +24,7 @@ namespace QuickMedia {
std::string title;
std::string url;
std::string thumbnail_url;
- void *userdata;
+ void *userdata = nullptr;
std::shared_ptr<BodyItemExtra> extra;
};
@@ -168,8 +168,8 @@ namespace QuickMedia {
virtual std::string url_get_playable_url(const std::string &url) { return url; }
virtual bool video_should_be_skipped(const std::string &url) { (void)url; return false; }
// This needs to be called before the other functions are called
- virtual PluginResult load(std::string &title, std::string &channel_url, double &duration, std::vector<MediaChapter> &chapters, std::string &err_str) {
- (void)title; (void)duration; (void)channel_url; (void)chapters; (void)err_str;
+ virtual PluginResult load(const SubmitArgs &args, std::string &title, std::string &channel_url, double &duration, std::vector<MediaChapter> &chapters, std::string &err_str) {
+ (void)args; (void)title; (void)duration; (void)channel_url; (void)chapters; (void)err_str;
return PluginResult::OK;
}
virtual void mark_watched() {};