Browse Source

Save resume data after recheck

Closes #11774.
adaptive-webui-19844
Vladimir Golovnev (Glassez) 5 years ago
parent
commit
f56f817c77
No known key found for this signature in database
GPG Key ID: 52A2C7DEE2DFA6F7
  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