diff --git a/src/base/bittorrent/torrentinfo.cpp b/src/base/bittorrent/torrentinfo.cpp index 8d11c44ba..17fd58f65 100644 --- a/src/base/bittorrent/torrentinfo.cpp +++ b/src/base/bittorrent/torrentinfo.cpp @@ -41,6 +41,7 @@ #include "base/global.h" #include "base/utils/fs.h" +#include "base/utils/misc.h" #include "infohash.h" #include "trackerentry.h" @@ -119,7 +120,7 @@ TorrentInfo TorrentInfo::loadFromFile(const QString &path, QString *error) noexc if (file.size() > MAX_TORRENT_SIZE) { if (error) - *error = tr("File size exceeds max limit %1").arg(MAX_TORRENT_SIZE); + *error = tr("File size exceeds max limit %1").arg(Utils::Misc::friendlyUnit(MAX_TORRENT_SIZE)); return TorrentInfo(); }