Small fix
This commit is contained in:
parent
886bd3f714
commit
c7246bbd4b
@ -1,9 +1,14 @@
|
|||||||
#include "http.hpp"
|
#include "http.hpp"
|
||||||
|
#include <algorithm>
|
||||||
#include <curl/curl.h>
|
#include <curl/curl.h>
|
||||||
#include <gsl/gsl>
|
#include <gsl/gsl>
|
||||||
|
|
||||||
#pragma comment(lib, "ws2_32.lib")
|
#pragma comment(lib, "ws2_32.lib")
|
||||||
|
|
||||||
|
#ifdef max
|
||||||
|
#undef max
|
||||||
|
#endif
|
||||||
|
|
||||||
namespace utils::http
|
namespace utils::http
|
||||||
{
|
{
|
||||||
namespace
|
namespace
|
||||||
@ -22,8 +27,8 @@ namespace utils::http
|
|||||||
try
|
try
|
||||||
{
|
{
|
||||||
const auto now = std::chrono::high_resolution_clock::now();
|
const auto now = std::chrono::high_resolution_clock::now();
|
||||||
const auto count = std::chrono::duration_cast<
|
const auto count = std::max(1, static_cast<int>(std::chrono::duration_cast<
|
||||||
std::chrono::milliseconds>(now - helper->start).count();
|
std::chrono::seconds>(now - helper->start).count()));
|
||||||
const auto speed = dlnow / count;
|
const auto speed = dlnow / count;
|
||||||
|
|
||||||
if (*helper->callback)
|
if (*helper->callback)
|
||||||
|
Loading…
Reference in New Issue
Block a user