mirror of
https://github.com/transmission/transmission
synced 2024-12-23 00:04:06 +00:00
fix: use correct variable for uploading speed (#3560)
This commit is contained in:
parent
18e2a04f88
commit
bc834b84a3
1 changed files with 1 additions and 1 deletions
|
@ -137,7 +137,7 @@ std::string getShortTransferString(
|
|||
|
||||
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)
|
||||
|
|
Loading…
Reference in a new issue