Browse Source

Fix unexpected torrent resume after app restart

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

8
src/base/bittorrent/session.cpp

@ -2098,14 +2098,8 @@ bool Session::addTorrent_impl(CreateTorrentParams params, const MagnetUri &magne @@ -2098,14 +2098,8 @@ bool Session::addTorrent_impl(CreateTorrentParams params, const MagnetUri &magne
if (!fromMagnetUri) {
if (params.restored) { // load from existing fastresume
// Make sure the torrent will be initially checked and then paused
// to perform some service jobs on it. We will start it if needed.
// (Workaround to easily support libtorrent-1.1
QByteArray patchedFastresumeData = fastresumeData;
patchedFastresumeData.replace("6:pausedi0e", "6:pausedi1e");
patchedFastresumeData.replace("12:auto_managedi0e", "12:auto_managedi1e");
// converting relative save_path to absolute
QByteArray patchedFastresumeData = fastresumeData;
int start = patchedFastresumeData.indexOf("9:save_path");
if (start > -1) {
start += 11;

Loading…
Cancel
Save