mirror of
https://github.com/Tautulli/Tautulli.git
synced 2025-07-07 05:31:15 -07:00
Divide file size by 2^10 but display SI units
This commit is contained in:
parent
47610323b0
commit
ae9df92d28
2 changed files with 4 additions and 2 deletions
|
@ -462,7 +462,8 @@ $('*').on('click', '.refresh_pms_image', function (e) {
|
|||
|
||||
// Taken from http://stackoverflow.com/questions/10420352/converting-file-size-in-bytes-to-human-readable#answer-14919494
|
||||
function humanFileSize(bytes, si = true) {
|
||||
var thresh = si ? 1000 : 1024;
|
||||
//var thresh = si ? 1000 : 1024;
|
||||
var thresh = 1024; // Always divide by 2^10 but display SI units
|
||||
if (Math.abs(bytes) < thresh) {
|
||||
return bytes + ' B';
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue