aboutsummaryrefslogtreecommitdiff
path: root/include/DownloadUtils.hpp
diff options
context:
space:
mode:
authordec05eba <dec05eba@protonmail.com>2021-04-17 13:16:03 +0200
committerdec05eba <dec05eba@protonmail.com>2021-04-17 13:16:03 +0200
commit033fbf3f1363c810d115ce9a531aea26ea9e1cf1 (patch)
tree2a89743424201ac5195245694a1af609c2f7414e /include/DownloadUtils.hpp
parent23435ac30b25cd1a0a8d52c4a792d90f38300344 (diff)
Fix mangakatana search when mangakatana redirect to the exact match
Diffstat (limited to 'include/DownloadUtils.hpp')
-rw-r--r--include/DownloadUtils.hpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/DownloadUtils.hpp b/include/DownloadUtils.hpp
index dd74f50..0a68069 100644
--- a/include/DownloadUtils.hpp
+++ b/include/DownloadUtils.hpp
@@ -21,6 +21,7 @@ namespace QuickMedia {
// Return true the return DownloadResult::OK for the download, which also saves the result in cache if |download_to_string_cache| is used
using DownloadErrorHandler = std::function<bool(std::string&)>;
+ DownloadResult download_head_to_string(const std::string &url, std::string &result, bool use_browser_useragent = false, bool fail_on_error = true);
DownloadResult download_to_string(const std::string &url, std::string &result, const std::vector<CommandArg> &additional_args, bool use_browser_useragent = false, bool fail_on_error = true);
// Note: This function saves the content to the file atomically
DownloadResult download_to_string_cache(const std::string &url, std::string &result, const std::vector<CommandArg> &additional_args, bool use_browser_useragent = false, DownloadErrorHandler error_handler = nullptr, Path cache_path = "");