From 80bf89857a3437a2351830fb88dfa8a84cf850ac Mon Sep 17 00:00:00 2001 From: Christophe Dumez Date: Sat, 1 Oct 2011 22:57:08 +0300 Subject: [PATCH] Web UI: Fix HTTP request processing with Firefox --- src/webui/httpconnection.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/webui/httpconnection.cpp b/src/webui/httpconnection.cpp index 81fb96f1f..d7744e666 100644 --- a/src/webui/httpconnection.cpp +++ b/src/webui/httpconnection.cpp @@ -89,7 +89,7 @@ void HttpConnection::read() { return; } - if (!input.endsWith("\r\n\r\n")) { + if (!input.endsWith("\r\n")) { // incomplete, let wait for more data qDebug() << Q_FUNC_INFO << "Incomplete HTTP request, let's wait for more data..."; return;