mirror of
https://github.com/transmission/transmission.git
synced 2025-12-20 02:18:42 +00:00
fix: use correct variable for uploading speed (#3560)
This commit is contained in:
@@ -137,7 +137,7 @@ std::string getShortTransferString(
|
|||||||
|
|
||||||
if (bool const have_up = have_meta && st->peersGettingFromUs > 0; have_up)
|
if (bool const have_up = have_meta && st->peersGettingFromUs > 0; have_up)
|
||||||
{
|
{
|
||||||
return fmt::format(_("{upload_speed} ▲"), fmt::arg("upload_speed", tr_formatter_speed_KBps(downloadSpeed_KBps)));
|
return fmt::format(_("{upload_speed} ▲"), fmt::arg("upload_speed", tr_formatter_speed_KBps(uploadSpeed_KBps)));
|
||||||
}
|
}
|
||||||
|
|
||||||
if (st->isStalled)
|
if (st->isStalled)
|
||||||
|
|||||||
Reference in New Issue
Block a user