aboutsummaryrefslogtreecommitdiff
path: root/src/plugins/Youtube.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/Youtube.cpp')
-rw-r--r--src/plugins/Youtube.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/plugins/Youtube.cpp b/src/plugins/Youtube.cpp
index 40b296d..b34a873 100644
--- a/src/plugins/Youtube.cpp
+++ b/src/plugins/Youtube.cpp
@@ -102,6 +102,12 @@ namespace QuickMedia {
return;
for(const Json::Value &content_item_json : item_contents_json) {
+ std::shared_ptr<BodyItem> body_item = parse_content_video_renderer(content_item_json, added_videos);
+ if(body_item)
+ result_items.push_back(std::move(body_item));
+ }
+
+ for(const Json::Value &content_item_json : item_contents_json) {
if(!content_item_json.isObject())
continue;
@@ -127,12 +133,6 @@ namespace QuickMedia {
result_items.push_back(std::move(body_item));
}
}
-
- for(const Json::Value &content_item_json : item_contents_json) {
- std::shared_ptr<BodyItem> body_item = parse_content_video_renderer(content_item_json, added_videos);
- if(body_item)
- result_items.push_back(std::move(body_item));
- }
}
static std::string remove_index_from_playlist_url(const std::string &url) {