don't respond to http other than /status

This commit is contained in:
Stephen Birarda 2016-03-30 11:10:14 -07:00
parent d99dcf5450
commit 24acf7584a

View file

@ -313,7 +313,10 @@ bool IceServer::handleHTTPRequest(HTTPConnection* connection, const QUrl& url, b
? 1 : 0;
connection->respond(HTTPConnection::StatusCode200, QByteArray::number(statusNumber));
return true;
}
}
return true;
return false;
}