Browse Source

Disable "Upload mode" when start preloaded torrent

adaptive-webui-19844
Vladimir Golovnev (Glassez) 6 years ago
parent
commit
b644d6685f
No known key found for this signature in database
GPG Key ID: 52A2C7DEE2DFA6F7
  1. 5
      src/base/bittorrent/session.cpp

5
src/base/bittorrent/session.cpp

@ -1862,10 +1862,13 @@ bool Session::addTorrent_impl(CreateTorrentParams params, const MagnetUri &magne @@ -1862,10 +1862,13 @@ bool Session::addTorrent_impl(CreateTorrentParams params, const MagnetUri &magne
--m_extraLimit;
try {
// Preloaded torrent is in "Upload mode" so we need to disable it
// otherwise the torrent never be downloaded (until application restart)
#if (LIBTORRENT_VERSION_NUM < 10200)
handle.auto_managed(false);
handle.set_upload_mode(false);
#else
handle.unset_flags(lt::torrent_flags::auto_managed);
handle.unset_flags(lt::torrent_flags::auto_managed | lt::torrent_flags::upload_mode);
#endif
handle.pause();
}

Loading…
Cancel
Save