fixed minor bug

This commit is contained in:
Peter Schojer 2008-09-11 10:03:59 +00:00
parent dd3f43c37d
commit bba85429b1

View File

@ -155,7 +155,8 @@ void Form::handleAjaxRequest(const Poco::Net::NameValueCollection& args, Poco::N
response.setChunkedTransferEncoding(true); response.setChunkedTransferEncoding(true);
serializeJSONImpl(response.send()); serializeJSONImpl(response.send());
} }
response.send(); else
response.send();
} }