mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-07-15 01:33:07 -07:00
Fix reporting of tracker status. Closes #3101.
This commit is contained in:
parent
12072e2b69
commit
e6b7a429ea
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue