diff --git a/src/core/http_queue.cc b/src/core/http_queue.cc index 406c7014..7cc2b557 100644 --- a/src/core/http_queue.cc +++ b/src/core/http_queue.cc @@ -2,6 +2,7 @@ #include "http_queue.h" +#include #include #include @@ -17,6 +18,9 @@ HttpQueue::insert(const std::string& url, std::shared_ptr stream) itr->add_done_slot([this, itr]() { erase(itr); }); itr->add_failed_slot([this, itr](auto) { erase(itr); }); + // TODO: Downloading http torrents doesn't seem to work. + // TODO: Quitting no longer works. + torrent::net_thread::http_stack()->start_get(*itr); return itr;