diff options
author | dec05eba <dec05eba@protonmail.com> | 2021-06-29 16:42:13 +0200 |
---|---|---|
committer | dec05eba <dec05eba@protonmail.com> | 2021-06-29 16:42:13 +0200 |
commit | 1ebc4cbc6ee3857a64a0658201cd55d65b6a6b15 (patch) | |
tree | 7ca0aefa8af7fd0ee6c502b8537758b3a927996a /src/plugins | |
parent | 5c62ad46dc334346f5f8e7c91efb67981798ebda (diff) |
Bypass cloudflare for coom plugins (fixes spank****)
Diffstat (limited to 'src/plugins')
-rw-r--r-- | src/plugins/MediaGeneric.cpp | 2 | ||||
-rw-r--r-- | src/plugins/Youtube.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/MediaGeneric.cpp b/src/plugins/MediaGeneric.cpp index 11b0957..1f2389a 100644 --- a/src/plugins/MediaGeneric.cpp +++ b/src/plugins/MediaGeneric.cpp @@ -38,7 +38,7 @@ namespace QuickMedia { args.push_back({ "-H", "referer: " + website_url }); std::string website_data; - if(download_to_string(url, website_data, args, true) != DownloadResult::OK) + if(download_to_string(url, website_data, args, true, true, true) != DownloadResult::OK) return PluginResult::NET_ERR; if(website_data.empty()) diff --git a/src/plugins/Youtube.cpp b/src/plugins/Youtube.cpp index 276fba5..24fd448 100644 --- a/src/plugins/Youtube.cpp +++ b/src/plugins/Youtube.cpp @@ -274,7 +274,7 @@ R"END( for(int i = 0; i < max_redirects; ++i) { std::string response_body; std::string response_headers; - download_to_string(playback_url, response_body, additional_args, true, true, &response_headers, 4096); + download_to_string(playback_url, response_body, additional_args, true, true, false, &response_headers, 4096); std::string content_type = header_extract_value(response_headers, "content-type"); if(content_type.empty()) { |