1
0
mirror of https://github.com/d47081/qBittorrent.git synced 2025-02-05 03:14:44 +00:00

Reinitialize webUI server when "IP address" setting changed

An app restart won't be necessary from now on.
This commit is contained in:
Chocobo1 2017-10-22 14:32:10 +08:00
parent 9600e7f5ad
commit d6ddc90199
No known key found for this signature in database
GPG Key ID: 210D9C873253A68C

View File

@ -68,12 +68,14 @@ void WebUI::init()
}
// http server
const QString serverAddressString = pref->getWebUiAddress();
if (!m_httpServer) {
m_webapp = new WebApplication(this);
m_httpServer = new Http::Server(m_webapp, this);
}
else {
if (m_httpServer->serverPort() != m_port)
if ((m_httpServer->serverAddress().toString() != serverAddressString)
|| (m_httpServer->serverPort() != m_port))
m_httpServer->close();
}
@ -93,10 +95,8 @@ void WebUI::init()
#endif
if (!m_httpServer->isListening()) {
const QString addressString = pref->getWebUiAddress();
const auto address = (addressString == "*" || addressString.isEmpty())
? QHostAddress::Any : QHostAddress(addressString);
const auto address = (serverAddressString == "*" || serverAddressString.isEmpty())
? QHostAddress::Any : QHostAddress(serverAddressString);
bool success = m_httpServer->listen(address, m_port);
if (success) {
logger->addMessage(tr("Web UI: Now listening on port %1").arg(m_port));