Browse Source

Merge pull request #11494 from thalieht/allowrecheck

Reallow to force recheck torrents that aren't fully started
adaptive-webui-19844
Vladimir Golovnev 5 years ago committed by GitHub
parent
commit
76a3f57996
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 7
      src/base/bittorrent/torrenthandle.cpp

7
src/base/bittorrent/torrenthandle.cpp

@ -1399,21 +1399,22 @@ void TorrentHandle::forceDHTAnnounce() @@ -1399,21 +1399,22 @@ void TorrentHandle::forceDHTAnnounce()
void TorrentHandle::forceRecheck()
{
if (m_startupState != Started) return;
if (!hasMetadata()) return;
m_nativeHandle.force_recheck();
m_unchecked = false;
if (isPaused()) {
if ((m_startupState != Started) || isPaused()) {
#if (LIBTORRENT_VERSION_NUM < 10200)
m_nativeHandle.stop_when_ready(true);
#else
m_nativeHandle.set_flags(lt::torrent_flags::stop_when_ready);
#endif
setAutoManaged(true);
m_pauseWhenReady = true;
}
if ((m_startupState == Started) && isPaused())
m_pauseWhenReady = true;
}
void TorrentHandle::setSequentialDownload(const bool enable)

Loading…
Cancel
Save