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

Merge pull request #3247 from glassez/ratio

Fix ratio limit for new torrents. Closes #3210.
This commit is contained in:
sledgehammer999 2015-06-19 18:53:40 +03:00
commit fd6fcffa67
2 changed files with 2 additions and 3 deletions

View File

@ -134,7 +134,7 @@ AddTorrentData::AddTorrentData(const AddTorrentParams &in)
, addForced(in.addForced)
, addPaused(in.addPaused)
, filePriorities(in.filePriorities)
, ratioLimit(TorrentHandle::USE_GLOBAL_RATIO)
, ratioLimit(in.ignoreShareRatio ? TorrentHandle::NO_RATIO_LIMIT : TorrentHandle::USE_GLOBAL_RATIO)
{
}
@ -192,7 +192,7 @@ TorrentHandle::TorrentHandle(Session *session, const libtorrent::torrent_handle
, m_savePath(Utils::Fs::toNativePath(data.savePath))
, m_label(data.label)
, m_hasSeedStatus(data.resumed ? data.hasSeedStatus : false)
, m_ratioLimit(data.resumed ? data.ratioLimit : (data.ignoreShareRatio ? NO_RATIO_LIMIT : USE_GLOBAL_RATIO))
, m_ratioLimit(data.ratioLimit)
, m_tempPathDisabled(data.disableTempPath)
, m_hasMissingFiles(false)
, m_useDefaultSavePath(false)

View File

@ -95,7 +95,6 @@ namespace BitTorrent
TriStateBool addPaused;
// for new torrents
QVector<int> filePriorities;
bool ignoreShareRatio;
// for resumed torrents
QDateTime addedTime;
qreal ratioLimit;