mirror of
https://github.com/d47081/qBittorrent.git
synced 2025-02-02 18:04:32 +00:00
Decouple dependency between Session and BandwidthScheduler during Session init. Closes #6007.
This commit is contained in:
parent
b971eb52ee
commit
0d1b70e248
@ -412,9 +412,6 @@ Session::Session(QObject *parent)
|
|||||||
|
|
||||||
connect(Net::ProxyConfigurationManager::instance(), SIGNAL(proxyConfigurationChanged()), SLOT(configureDeferred()));
|
connect(Net::ProxyConfigurationManager::instance(), SIGNAL(proxyConfigurationChanged()), SLOT(configureDeferred()));
|
||||||
|
|
||||||
if (isBandwidthSchedulerEnabled())
|
|
||||||
enableBandwidthScheduler();
|
|
||||||
|
|
||||||
// Network configuration monitor
|
// Network configuration monitor
|
||||||
connect(&m_networkManager, SIGNAL(onlineStateChanged(bool)), SLOT(networkOnlineStateChanged(bool)));
|
connect(&m_networkManager, SIGNAL(onlineStateChanged(bool)), SLOT(networkOnlineStateChanged(bool)));
|
||||||
connect(&m_networkManager, SIGNAL(configurationAdded(const QNetworkConfiguration&)), SLOT(networkConfigurationChange(const QNetworkConfiguration&)));
|
connect(&m_networkManager, SIGNAL(configurationAdded(const QNetworkConfiguration&)), SLOT(networkConfigurationChange(const QNetworkConfiguration&)));
|
||||||
@ -836,8 +833,13 @@ Session::~Session()
|
|||||||
|
|
||||||
void Session::initInstance()
|
void Session::initInstance()
|
||||||
{
|
{
|
||||||
if (!m_instance)
|
if (!m_instance) {
|
||||||
m_instance = new Session;
|
m_instance = new Session;
|
||||||
|
|
||||||
|
// BandwidthScheduler::start() depends on Session being fully constructed
|
||||||
|
if (m_instance->isBandwidthSchedulerEnabled())
|
||||||
|
m_instance->enableBandwidthScheduler();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void Session::freeInstance()
|
void Session::freeInstance()
|
||||||
|
Loading…
x
Reference in New Issue
Block a user