Browse Source

Don't ever stop seeding forced torrents. Closes #5784.

adaptive-webui-19844
sledgehammer999 8 years ago
parent
commit
259b5e51c4
  1. 3
      src/base/bittorrent/session.cpp

3
src/base/bittorrent/session.cpp

@ -1289,7 +1289,8 @@ void Session::processBigRatios() @@ -1289,7 +1289,8 @@ void Session::processBigRatios()
qreal globalMaxRatio = this->globalMaxRatio();
foreach (TorrentHandle *const torrent, m_torrents) {
if (torrent->isSeed() && (torrent->ratioLimit() != TorrentHandle::NO_RATIO_LIMIT)) {
if (torrent->isSeed()
&& ((torrent->ratioLimit() != TorrentHandle::NO_RATIO_LIMIT) || !torrent->isForced())) {
const qreal ratio = torrent->realRatio();
qreal ratioLimit = torrent->ratioLimit();
if (ratioLimit == TorrentHandle::USE_GLOBAL_RATIO) {

Loading…
Cancel
Save