1
0
mirror of https://github.com/d47081/qBittorrent.git synced 2025-01-27 06:54:20 +00:00

Don't recheck twice after 'Force Recheck' with 'Recheck torrents on completion' enabled. Closes #4274.

This commit is contained in:
sledgehammer999 2015-12-13 14:33:16 +02:00
parent ebe6d1b603
commit 2d25edd4d6

View File

@ -1368,6 +1368,8 @@ void TorrentHandle::handleTorrentCheckedAlert(libtorrent::torrent_checked_alert
if (progress() < 1.0 && wantedSize() > 0)
m_hasSeedStatus = false;
else if (progress() == 1.0)
m_hasSeedStatus = true;
if (m_pauseAfterRecheck) {
m_pauseAfterRecheck = false;