From 223cdf22c5aec68d1e14bc013d8e75daa374d04e Mon Sep 17 00:00:00 2001 From: dec05eba Date: Mon, 1 Jun 2020 23:10:00 +0200 Subject: Cache thumbnails --- src/Body.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'src/Body.cpp') diff --git a/src/Body.cpp b/src/Body.cpp index 8ccb3cc..3bd2421 100644 --- a/src/Body.cpp +++ b/src/Body.cpp @@ -112,8 +112,7 @@ namespace QuickMedia { loading_thumbnail = true; thumbnail_load_thread = std::thread([this, result, url]() { std::string texture_data; - // TODO: Cache images instead of redownloading them everytime they appear on the screen - if(download_to_string(url, texture_data, {}, program->get_current_plugin()->use_tor) == DownloadResult::OK) { + if(download_to_string_cache(url, texture_data, {}, program->get_current_plugin()->use_tor) == DownloadResult::OK) { if(result->loadFromMemory(texture_data.data(), texture_data.size())) { //result->generateMipmap(); } -- cgit v1.2.3