mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2024-12-21 08:09:35 +08:00
Turn off port forwarding of WebUI by default for GUI users
This commit is contained in:
parent
73f762250c
commit
c7d10dc091
@ -451,7 +451,11 @@ void Preferences::setWebUiPort(quint16 port)
|
||||
|
||||
bool Preferences::useUPnPForWebUIPort() const
|
||||
{
|
||||
#ifdef DISABLE_GUI
|
||||
return value("Preferences/WebUI/UseUPnP", true).toBool();
|
||||
#else
|
||||
return value("Preferences/WebUI/UseUPnP", false).toBool();
|
||||
#endif
|
||||
}
|
||||
|
||||
void Preferences::setUPnPForWebUIPort(bool enabled)
|
||||
|
Loading…
Reference in New Issue
Block a user