1
0
mirror of https://github.com/d47081/qBittorrent.git synced 2025-01-23 04:54:18 +00:00

Correctly set "stop condition" on force recheck invoked

PR #17915.
Closes #17913.
This commit is contained in:
Vladimir Golovnev 2022-10-22 17:43:17 +03:00 committed by GitHub
parent 597444c527
commit 05b7194bf7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1429,7 +1429,7 @@ void TorrentImpl::forceRecheck()
{ {
// When "force recheck" is applied on paused torrent, we temporarily resume it // When "force recheck" is applied on paused torrent, we temporarily resume it
resume(); resume();
setStopCondition(StopCondition::FilesChecked); m_stopCondition = StopCondition::FilesChecked;
} }
} }