idk what is it, what is header ? so prolly noDid you also change the number of sprites written inside the header?
FileHey, does anyome ever got this error and found way to fix or someone can try help me out please ?
I updated my sprites, and after that this happens then OTCV8 client tryes to update
View attachment 79251
src/framework/http/session.cpp
:void HttpSession::on_request_sent(const boost::system::error_code& ec) {
if (ec)
return onError("request sending error", ec.message());
if(m_result->canceled)
return onError("canceled");
m_response.body_limit(512 * 1024 * 1024); // <<< LIMIT
m_response.header_limit(4 * 1024 * 1024);
so whole app must be recompiled ?Filesrc/framework/http/session.cpp
:
here is limit of HTTP body set to 512 MB. If your .spr file is bigger, you need to increase this value.C++:void HttpSession::on_request_sent(const boost::system::error_code& ec) { if (ec) return onError("request sending error", ec.message()); if(m_result->canceled) return onError("canceled"); m_response.body_limit(512 * 1024 * 1024); // <<< LIMIT m_response.header_limit(4 * 1024 * 1024);
Yes.so whole app must be recompiled ?