mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
fixed typo causing FT to show NaN for transfer progress in webUI
This commit is contained in:
parent
cfb194a8ef
commit
e9da9a555d
@ -68,7 +68,7 @@ module.exports = {
|
||||
]),
|
||||
paths.map(function (file){
|
||||
var ctrlBtn = m("div","");
|
||||
var progress = file.transfered / file.size * 100;
|
||||
var progress = file.transferred / file.size * 100;
|
||||
return m("tr",[
|
||||
m("td",[
|
||||
m("a.filelink",
|
||||
|
Loading…
Reference in New Issue
Block a user