diff options
Diffstat (limited to 'assets')
-rw-r--r-- | assets/cargohold.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/assets/cargohold.js b/assets/cargohold.js index a9cb718..ea882fa 100644 --- a/assets/cargohold.js +++ b/assets/cargohold.js @@ -140,7 +140,7 @@ function listing_update(){ listing_add(data.files[i], data.display); } - element("download-all").innerText = "Download all (" + data.files.length + " Files, " + (total / 1024 /1024) + "MB)"; + element("download-all").innerText = "Download all (" + data.files.length + " Files, " + (data.total / 1024 /1024) + "MB)"; }; req.open("GET", "listing"); req.send(); |