Browse Source

Web UI: Fix HTTP request processing with Firefox

adaptive-webui-19844
Christophe Dumez 13 years ago
parent
commit
80bf89857a
  1. 2
      src/webui/httpconnection.cpp

2
src/webui/httpconnection.cpp

@ -89,7 +89,7 @@ void HttpConnection::read() {
return; return;
} }
if (!input.endsWith("\r\n\r\n")) { if (!input.endsWith("\r\n")) {
// incomplete, let wait for more data // incomplete, let wait for more data
qDebug() << Q_FUNC_INFO << "Incomplete HTTP request, let's wait for more data..."; qDebug() << Q_FUNC_INFO << "Incomplete HTTP request, let's wait for more data...";
return; return;

Loading…
Cancel
Save