Skip to content
This repository was archived by the owner on Aug 4, 2025. It is now read-only.

Commit 42832a6

Browse files
authored
Shorten file too large message
1 parent 8232e14 commit 42832a6

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@
121121
document.getElementById("fin").onchange = function(){
122122
if(this.files.length>0){
123123
if (this.files[0].size > 1073741824) { // 1 GiB
124-
document.getElementById("status").innerHTML = "File too large! Only files up to 1 GiB are supported.";
124+
document.getElementById("status").innerHTML = "File must be less than 1 GiB!";
125125
document.getElementById("status").style.color = "#db2828";
126126
setTimeout(() => {
127127
window.location.reload();

0 commit comments

Comments
 (0)