Browse Source

Merge pull request #11798 from glassez/fix-recheck-loop

Save resume data after recheck. Closes #11774
adaptive-webui-19844
Vladimir Golovnev 5 years ago committed by GitHub
parent
commit
7ceeea880e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 3
      src/base/bittorrent/torrenthandle.cpp

3
src/base/bittorrent/torrenthandle.cpp

@ -1772,11 +1772,12 @@ void TorrentHandle::handleTorrentPausedAlert(const lt::torrent_paused_alert *p) @@ -1772,11 +1772,12 @@ void TorrentHandle::handleTorrentPausedAlert(const lt::torrent_paused_alert *p)
if (!m_pauseWhenReady) {
updateStatus();
m_speedMonitor.reset();
m_session->handleTorrentPaused(this);
}
else {
m_pauseWhenReady = false;
}
m_session->handleTorrentPaused(this);
}
}

Loading…
Cancel
Save