Browse Source

Merge pull request #9483 from sledgehammer999/save_queued_state_change

Save state change from queued to paused
adaptive-webui-19844
sledgehammer999 6 years ago committed by GitHub
parent
commit
6660184091
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 6
      src/base/bittorrent/torrenthandle.cpp

6
src/base/bittorrent/torrenthandle.cpp

@ -1347,6 +1347,12 @@ void TorrentHandle::pause() @@ -1347,6 +1347,12 @@ void TorrentHandle::pause()
m_nativeHandle.auto_managed(false);
m_nativeHandle.pause();
// Libtorrent doesn't emit a torrent_paused_alert when the
// torrent is queued (no I/O)
// We test on the cached m_nativeStatus
if (isQueued())
m_session->handleTorrentPaused(this);
}
void TorrentHandle::resume(bool forced)

Loading…
Cancel
Save