aboutsummaryrefslogtreecommitdiff
path: root/plugins/Lbry.hpp
diff options
context:
space:
mode:
authordec05eba <dec05eba@protonmail.com>2023-06-19 02:18:47 +0200
committerdec05eba <dec05eba@protonmail.com>2023-06-19 02:18:47 +0200
commit47d594f0676a644e7c072331a009ceb46de8f62e (patch)
tree94c94683628deda98976f5d1f7bbb6aa8e59d708 /plugins/Lbry.hpp
parent613016a48d9b10fb81f5bc54b0bdd463c39f5283 (diff)
Lbry: fix videos not working
Diffstat (limited to 'plugins/Lbry.hpp')
-rw-r--r--plugins/Lbry.hpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/plugins/Lbry.hpp b/plugins/Lbry.hpp
index 0eeaf86..4228544 100644
--- a/plugins/Lbry.hpp
+++ b/plugins/Lbry.hpp
@@ -1,6 +1,7 @@
#pragma once
#include "Page.hpp"
+#include "../include/M3U8.hpp"
namespace QuickMedia {
class LbrySearchPage : public Page {
@@ -44,6 +45,6 @@ namespace QuickMedia {
PluginResult load(const SubmitArgs &args, VideoInfo &video_info, std::string &err_str) override;
private:
std::string title;
- std::string streaming_url;
+ std::vector<M3U8Stream> streams;
};
} \ No newline at end of file