mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2025-12-17 14:08:03 -06:00
Don't ever stop seeding forced torrents. Closes #5784.
This commit is contained in:
@@ -1289,7 +1289,8 @@ void Session::processBigRatios()
|
|||||||
|
|
||||||
qreal globalMaxRatio = this->globalMaxRatio();
|
qreal globalMaxRatio = this->globalMaxRatio();
|
||||||
foreach (TorrentHandle *const torrent, m_torrents) {
|
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();
|
const qreal ratio = torrent->realRatio();
|
||||||
qreal ratioLimit = torrent->ratioLimit();
|
qreal ratioLimit = torrent->ratioLimit();
|
||||||
if (ratioLimit == TorrentHandle::USE_GLOBAL_RATIO) {
|
if (ratioLimit == TorrentHandle::USE_GLOBAL_RATIO) {
|
||||||
|
|||||||
Reference in New Issue
Block a user