Replaced the no longer existing HttpResponse::writeText with HttpResponse::write.

This commit is contained in:
Luis Ángel San Martín
2016-06-22 20:07:50 +02:00
parent 0b9e840bf0
commit d94f9201ee
10 changed files with 20 additions and 21 deletions

View File

@ -36,5 +36,5 @@ void LibrariesController::service(HttpRequest& request, HttpResponse& response)
}
response.setStatus(200,"OK");
response.writeText(t,true);
response.write(t.toUtf8(),true);
}