1
0
mirror of https://github.com/d47081/qBittorrent.git synced 2025-03-10 04:11:16 +00:00

Merge pull request #10754 from glassez/fix-magnet

Disable "Upload mode" when start preloaded torrent. Closes #10751
This commit is contained in:
Vladimir Golovnev 2019-06-04 10:56:11 +03:00 committed by GitHub
commit 6f6033cf1c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1865,10 +1865,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.set_flags(lt::torrent_flags::auto_managed);
handle.unset_flags(lt::torrent_flags::auto_managed | lt::torrent_flags::upload_mode);
#endif
handle.pause();
}
@ -1962,7 +1965,7 @@ bool Session::addTorrent_impl(CreateTorrentParams params, const MagnetUri &magne
#else
p.flags &= ~lt::torrent_flags::seed_mode;
#endif
}
}
if (!fromMagnetUri) {
if (params.restored) {