mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-08-20 13:23:34 -07:00
parent
dcdbd02102
commit
bdd56a52d3
1 changed files with 1 additions and 1 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue