From e6b7a429ea3330ccb920352706120779ec2b936a Mon Sep 17 00:00:00 2001 From: sledgehammer999 Date: Wed, 4 Nov 2015 19:13:09 +0200 Subject: [PATCH] Fix reporting of tracker status. Closes #3101. --- src/core/bittorrent/trackerentry.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/bittorrent/trackerentry.cpp b/src/core/bittorrent/trackerentry.cpp index 14537a10e..9c8fbd676 100644 --- a/src/core/bittorrent/trackerentry.cpp +++ b/src/core/bittorrent/trackerentry.cpp @@ -61,7 +61,7 @@ int TrackerEntry::tier() const TrackerEntry::Status TrackerEntry::status() const { - if (m_nativeEntry.verified) + if (m_nativeEntry.is_working()) return Working; else if ((m_nativeEntry.fails == 0) && m_nativeEntry.updating) return Updating;