diff options
author | cbdev <cb@cbcdn.com> | 2024-01-21 16:14:26 +0100 |
---|---|---|
committer | cbdev <cb@cbcdn.com> | 2024-01-21 16:14:26 +0100 |
commit | cfc8ae86e2067c9f9303fe326e3de566b53f1849 (patch) | |
tree | 4c96ee8f163938fda8a3e5c1e22238b39ba776dd | |
parent | e293244df1297194eb56db8d81917b1be778e855 (diff) | |
download | cargohold-cfc8ae86e2067c9f9303fe326e3de566b53f1849.tar.gz cargohold-cfc8ae86e2067c9f9303fe326e3de566b53f1849.tar.bz2 cargohold-cfc8ae86e2067c9f9303fe326e3de566b53f1849.zip |
-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(); |