mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2025-12-20 07:27:22 -06:00
Code optimization
This commit is contained in:
@@ -559,13 +559,20 @@ void QTorrentHandle::downloading_pieces(bitfield &bf) const {
|
||||
|
||||
bool QTorrentHandle::has_metadata() const {
|
||||
#if LIBTORRENT_VERSION_MINOR > 15
|
||||
torrent_status st = torrent_handle::status(0x0);
|
||||
return st.has_metadata;
|
||||
return torrent_handle::status(query_distributed_copies).has_metadata;
|
||||
#else
|
||||
return torrent_handle::has_metadata();
|
||||
#endif
|
||||
}
|
||||
|
||||
float QTorrentHandle::distributed_copies() const {
|
||||
#if LIBTORRENT_VERSION_MINOR > 15
|
||||
return torrent_handle::status(0x0).distributed_copies;
|
||||
#else
|
||||
return torrent_handle::status().distributed_copies;
|
||||
#endif
|
||||
}
|
||||
|
||||
//
|
||||
// Setters
|
||||
//
|
||||
|
||||
Reference in New Issue
Block a user