aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcbdev <cb@cbcdn.com>2024-01-21 16:14:26 +0100
committercbdev <cb@cbcdn.com>2024-01-21 16:14:26 +0100
commitcfc8ae86e2067c9f9303fe326e3de566b53f1849 (patch)
tree4c96ee8f163938fda8a3e5c1e22238b39ba776dd
parente293244df1297194eb56db8d81917b1be778e855 (diff)
downloadcargohold-master.tar.gz
cargohold-master.tar.bz2
cargohold-master.zip
Fix property accessHEADmaster
-rw-r--r--assets/cargohold.js2
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();