From 7b006a47ba0d38455c8d4cbcebaa95cd6fc7863e Mon Sep 17 00:00:00 2001 From: thalieht Date: Mon, 8 Apr 2019 20:12:52 +0300 Subject: [PATCH] Show user friendly size in error --- src/base/bittorrent/torrentinfo.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/base/bittorrent/torrentinfo.cpp b/src/base/bittorrent/torrentinfo.cpp index 7ed25e702..ca121ab20 100644 --- a/src/base/bittorrent/torrentinfo.cpp +++ b/src/base/bittorrent/torrentinfo.cpp @@ -108,7 +108,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(); }