mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2024-11-23 17:56:50 +03:00
Fix corner case of reseting 'm_hasSeedStatus' in 3a29d70dd5
.
This commit is contained in:
parent
99ba8a6a53
commit
9b6122c328
1 changed files with 1 additions and 1 deletions
|
@ -1378,7 +1378,7 @@ void TorrentHandle::handleTorrentCheckedAlert(libtorrent::torrent_checked_alert
|
|||
updateStatus();
|
||||
adjustActualSavePath();
|
||||
|
||||
if (progress() < 1.0)
|
||||
if (progress() < 1.0 && wantedSize() > 0)
|
||||
m_hasSeedStatus = false;
|
||||
|
||||
if (m_pauseAfterRecheck) {
|
||||
|
|
Loading…
Reference in a new issue