Skip to content

Commit

Permalink
Update scripts_index.tmpl
Browse files Browse the repository at this point in the history
As the default maxFilesize is 256 I just added a few 0's for it to be 1TB. Hopefully that is enough and nobody wants to transfer more than 1TB using goshs. This fixes issue #84
  • Loading branch information
patrickhener authored Feb 18, 2025
1 parent 35fe075 commit f0ddd94
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions httpserver/static/templates/scripts_index.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,11 @@
uploadMultiple: true,
parallelUploads: 100,
maxFiles: 100,
maxFilesize: 10240,
maxFilesize: 1024000,
});

myDropzone.on("successmultiple", function () {
location.reload();
});
</script>
{{ end }}
{{ end }}

0 comments on commit f0ddd94

Please sign in to comment.