Show proper string when torrent availability is not available

This commit is contained in:
Chocobo1 2021-02-06 11:09:17 +08:00 committed by sledgehammer999
parent 8210f9841e
commit cfd40adcb5
No known key found for this signature in database
GPG key ID: 6E4A2D025B7CC9A2

View file

@ -244,8 +244,11 @@ QString TransferListModel::displayValue(const BitTorrent::Torrent *torrent, cons
const auto availabilityString = [hideValues](const qreal value) -> QString
{
return (hideValues && (value <= 0))
? QString {} : Utils::String::fromDouble(value, 3);
if (hideValues && (value == 0))
return {};
return (value >= 0)
? Utils::String::fromDouble(value, 3)
: tr("N/A");
};
const auto unitString = [hideValues](const qint64 value, const bool isSpeedUnit = false) -> QString