mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-07-31 03:50:20 -07:00
Do not list not contacted trackers as error
This commit is contained in:
parent
d5a4ebe7c9
commit
8423f43209
1 changed files with 2 additions and 3 deletions
|
@ -1654,14 +1654,13 @@ void TorrentHandle::handleTrackerErrorAlert(const lt::tracker_error_alert *p)
|
||||||
|
|
||||||
// Starting with libtorrent 1.2.x each tracker has multiple local endpoints from which
|
// Starting with libtorrent 1.2.x each tracker has multiple local endpoints from which
|
||||||
// an announce is attempted. Some endpoints might succeed while others might fail.
|
// an announce is attempted. Some endpoints might succeed while others might fail.
|
||||||
// Emit the signal only if all endpoints have failed. TrackerEntry::isWorking() returns
|
// Emit the signal only if all endpoints have failed.
|
||||||
// true if at least one endpoint works.
|
|
||||||
const QVector<TrackerEntry> trackerList = trackers();
|
const QVector<TrackerEntry> trackerList = trackers();
|
||||||
const auto iter = std::find_if(trackerList.cbegin(), trackerList.cend(), [&trackerUrl](const TrackerEntry &entry)
|
const auto iter = std::find_if(trackerList.cbegin(), trackerList.cend(), [&trackerUrl](const TrackerEntry &entry)
|
||||||
{
|
{
|
||||||
return (entry.url() == trackerUrl);
|
return (entry.url() == trackerUrl);
|
||||||
});
|
});
|
||||||
if ((iter != trackerList.cend()) && !iter->isWorking())
|
if ((iter != trackerList.cend()) && (iter->status() == TrackerEntry::NotWorking))
|
||||||
m_session->handleTorrentTrackerError(this, trackerUrl);
|
m_session->handleTorrentTrackerError(this, trackerUrl);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue