diff options
author | dec05eba <dec05eba@protonmail.com> | 2020-07-09 05:59:39 +0200 |
---|---|---|
committer | dec05eba <dec05eba@protonmail.com> | 2020-07-09 05:59:39 +0200 |
commit | 03a228f81f4a7a827a5a383bc16b8a2fb3abadb4 (patch) | |
tree | 19607b44ad01f933fe8d8d76d1bf6d68929de5e3 /src/plugins | |
parent | 4b90946f677c2b073108637b5c0c8efaa8c47deb (diff) |
Fix item selection not working with empty search
Fix history not working on mangatown.
Make image scrolling faster in infinite scroll mode.
Diffstat (limited to 'src/plugins')
-rw-r--r-- | src/plugins/Mangatown.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/Mangatown.cpp b/src/plugins/Mangatown.cpp index 1954854..8dcf8d3 100644 --- a/src/plugins/Mangatown.cpp +++ b/src/plugins/Mangatown.cpp @@ -160,7 +160,7 @@ namespace QuickMedia { std::string image_src; std::string website_data; std::string full_url = chapter_url + std::to_string(page_index++) + ".html"; - if(download_to_string(full_url, website_data, {}, use_tor, true) != DownloadResult::OK) + if(download_to_string_cache(full_url, website_data, {}, use_tor, true) != DownloadResult::OK) break; QuickMediaHtmlSearch html_search; |