Browse Source

- BUGFIX: AddInPause setting doesn't pause downloads on startup anymore (real fix this time...)

adaptive-webui-19844
Christophe Dumez 17 years ago
parent
commit
0a0c1f3529
  1. 2
      src/bittorrent.cpp

2
src/bittorrent.cpp

@ -485,7 +485,7 @@ void bittorrent::addTorrent(QString path, bool fromScanDir, QString from_url, bo @@ -485,7 +485,7 @@ void bittorrent::addTorrent(QString path, bool fromScanDir, QString from_url, bo
QFile::copy(file, newFile);
}
// Pause torrent if it was paused last time
if(!resumed && (addInPause || QFile::exists(misc::qBittorrentPath()+"BT_backup"+QDir::separator()+hash+".paused"))) {
if((!resumed && addInPause) || QFile::exists(misc::qBittorrentPath()+"BT_backup"+QDir::separator()+hash+".paused")) {
torrentsToPauseAfterChecking << hash;
qDebug("Adding a torrent to the torrentsToPauseAfterChecking list");
}

Loading…
Cancel
Save