mirror of
https://github.com/d47081/qBittorrent.git
synced 2025-01-22 20:44:15 +00:00
parent
dcdbd02102
commit
bdd56a52d3
@ -269,7 +269,6 @@ TorrentFilesWatcher::~TorrentFilesWatcher()
|
|||||||
{
|
{
|
||||||
m_ioThread->quit();
|
m_ioThread->quit();
|
||||||
m_ioThread->wait();
|
m_ioThread->wait();
|
||||||
delete m_asyncWorker;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void TorrentFilesWatcher::initWorker()
|
void TorrentFilesWatcher::initWorker()
|
||||||
@ -282,6 +281,7 @@ void TorrentFilesWatcher::initWorker()
|
|||||||
connect(m_asyncWorker, &TorrentFilesWatcher::Worker::torrentFound, this, &TorrentFilesWatcher::onTorrentFound);
|
connect(m_asyncWorker, &TorrentFilesWatcher::Worker::torrentFound, this, &TorrentFilesWatcher::onTorrentFound);
|
||||||
|
|
||||||
m_asyncWorker->moveToThread(m_ioThread);
|
m_asyncWorker->moveToThread(m_ioThread);
|
||||||
|
connect(m_ioThread, &QThread::finished, m_asyncWorker, &QObject::deleteLater);
|
||||||
m_ioThread->start();
|
m_ioThread->start();
|
||||||
|
|
||||||
for (auto it = m_watchedFolders.cbegin(); it != m_watchedFolders.cend(); ++it)
|
for (auto it = m_watchedFolders.cbegin(); it != m_watchedFolders.cend(); ++it)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user