Browse Source

Correctly set "stop condition" on force recheck invoked

PR #17915.
Closes #17913.
adaptive-webui-19844
Vladimir Golovnev 2 years ago committed by GitHub
parent
commit
05b7194bf7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      src/base/bittorrent/torrentimpl.cpp

2
src/base/bittorrent/torrentimpl.cpp

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

Loading…
Cancel
Save