mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-08-20 21:33:27 -07:00
Don't recheck twice after 'Force Recheck' with 'Recheck torrents on completion' enabled. Closes #4274.
This commit is contained in:
parent
0f4610c127
commit
8474d0d199
1 changed files with 2 additions and 0 deletions
|
@ -1368,6 +1368,8 @@ void TorrentHandle::handleTorrentCheckedAlert(libtorrent::torrent_checked_alert
|
||||||
|
|
||||||
if (progress() < 1.0 && wantedSize() > 0)
|
if (progress() < 1.0 && wantedSize() > 0)
|
||||||
m_hasSeedStatus = false;
|
m_hasSeedStatus = false;
|
||||||
|
else if (progress() == 1.0)
|
||||||
|
m_hasSeedStatus = true;
|
||||||
|
|
||||||
if (m_pauseAfterRecheck) {
|
if (m_pauseAfterRecheck) {
|
||||||
m_pauseAfterRecheck = false;
|
m_pauseAfterRecheck = false;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue