fix long line
This commit is contained in:
parent
2102648102
commit
4ee2e1d049
@ -90,7 +90,8 @@ void RequestHandler::handle_request(const http::Request &req, http::Reply &reply
|
||||
const int position = std::distance(request.begin(), iter);
|
||||
JSON::Object json_result;
|
||||
json_result.values["status"] = 400;
|
||||
std::string message = ("Query string malformed close to position " + IntToString(position));
|
||||
std::string message = "Query string malformed close to position ";
|
||||
message += UintToString(position);
|
||||
json_result.values["status_message"] = message;
|
||||
JSON::render(reply.content, json_result);
|
||||
return;
|
||||
|
Loading…
Reference in New Issue
Block a user