Browse Source

Fix wrong arg placeholder

adaptive-webui-19844
Chocobo1 6 years ago
parent
commit
79d7ba8205
No known key found for this signature in database
GPG Key ID: 210D9C873253A68C
  1. 2
      src/base/http/connection.cpp

2
src/base/http/connection.cpp

@ -66,7 +66,7 @@ void Connection::read() @@ -66,7 +66,7 @@ void Connection::read()
case RequestParser::ParseStatus::Incomplete: {
const long bufferLimit = RequestParser::MAX_CONTENT_SIZE * 1.1; // some margin for headers
if (m_receivedData.size() > bufferLimit) {
Logger::instance()->addMessage(tr("Http request size exceeds limiation, closing socket. Limit: %ld, IP: %s")
Logger::instance()->addMessage(tr("Http request size exceeds limiation, closing socket. Limit: %1, IP: %2")
.arg(bufferLimit).arg(m_socket->peerAddress().toString()), Log::WARNING);
Response resp(413, "Payload Too Large");

Loading…
Cancel
Save