1
0
mirror of https://github.com/d47081/qBittorrent.git synced 2025-01-11 23:37:59 +00:00

Merge pull request #11798 from glassez/fix-recheck-loop

Save resume data after recheck. Closes #11774
This commit is contained in:
Vladimir Golovnev 2020-01-02 17:21:25 +03:00 committed by GitHub
commit 7ceeea880e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1772,11 +1772,12 @@ void TorrentHandle::handleTorrentPausedAlert(const lt::torrent_paused_alert *p)
if (!m_pauseWhenReady) {
updateStatus();
m_speedMonitor.reset();
m_session->handleTorrentPaused(this);
}
else {
m_pauseWhenReady = false;
}
m_session->handleTorrentPaused(this);
}
}