mirror of
https://git.deluge-torrent.org/deluge
synced 2025-04-20 03:24:54 +00:00
fix typo
This commit is contained in:
parent
b615ebe1b8
commit
8b58c960f3
1 changed files with 1 additions and 1 deletions
|
@ -89,7 +89,7 @@ Deluge.Formatters = {
|
|||
* @return {String} formatted string with KiB, MiB or GiB units.
|
||||
*/
|
||||
speed: function(bytes, showZero) {
|
||||
return (!bytess && !showZero) ? '' : fsize(bytes, showZero) + '/s';
|
||||
return (!bytes && !showZero) ? '' : fsize(bytes, showZero) + '/s';
|
||||
},
|
||||
|
||||
/**
|
||||
|
|
Loading…
Add table
Reference in a new issue