mirror of
https://github.com/d47081/qBittorrent.git
synced 2025-08-28 14:42:15 +00:00
commit
4df1bca8bb
@ -116,11 +116,10 @@ int TrackerEntry::numSeeds() const
|
|||||||
#if (LIBTORRENT_VERSION_NUM < 10200)
|
#if (LIBTORRENT_VERSION_NUM < 10200)
|
||||||
return nativeEntry().scrape_complete;
|
return nativeEntry().scrape_complete;
|
||||||
#else
|
#else
|
||||||
int max = -1;
|
int value = -1;
|
||||||
return nativeEntry().endpoints.empty() ? -1 : nativeEntry().endpoints[0].scrape_incomplete;
|
|
||||||
for (const lt::announce_endpoint &endpoint : nativeEntry().endpoints)
|
for (const lt::announce_endpoint &endpoint : nativeEntry().endpoints)
|
||||||
max = std::max(max, endpoint.scrape_complete);
|
value = std::max(value, endpoint.scrape_complete);
|
||||||
return max;
|
return value;
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -129,11 +128,10 @@ int TrackerEntry::numLeeches() const
|
|||||||
#if (LIBTORRENT_VERSION_NUM < 10200)
|
#if (LIBTORRENT_VERSION_NUM < 10200)
|
||||||
return nativeEntry().scrape_incomplete;
|
return nativeEntry().scrape_incomplete;
|
||||||
#else
|
#else
|
||||||
int max = -1;
|
int value = -1;
|
||||||
return nativeEntry().endpoints.empty() ? -1 : nativeEntry().endpoints[0].scrape_incomplete;
|
|
||||||
for (const lt::announce_endpoint &endpoint : nativeEntry().endpoints)
|
for (const lt::announce_endpoint &endpoint : nativeEntry().endpoints)
|
||||||
max = std::max(max, endpoint.scrape_incomplete);
|
value = std::max(value, endpoint.scrape_incomplete);
|
||||||
return max;
|
return value;
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -142,11 +140,10 @@ int TrackerEntry::numDownloaded() const
|
|||||||
#if (LIBTORRENT_VERSION_NUM < 10200)
|
#if (LIBTORRENT_VERSION_NUM < 10200)
|
||||||
return nativeEntry().scrape_downloaded;
|
return nativeEntry().scrape_downloaded;
|
||||||
#else
|
#else
|
||||||
int max = -1;
|
int value = -1;
|
||||||
return nativeEntry().endpoints.empty() ? -1 : nativeEntry().endpoints[0].scrape_incomplete;
|
|
||||||
for (const lt::announce_endpoint &endpoint : nativeEntry().endpoints)
|
for (const lt::announce_endpoint &endpoint : nativeEntry().endpoints)
|
||||||
max = std::max(max, endpoint.scrape_downloaded);
|
value = std::max(value, endpoint.scrape_downloaded);
|
||||||
return max;
|
return value;
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user