increase filename char limit

master
Aevann 2024-11-13 03:06:59 +02:00
parent d8f7d133d7
commit ffc97ce81f
1 changed files with 2 additions and 2 deletions

View File

@ -391,8 +391,8 @@ document.addEventListener('click', function(e) {
const input = document.getElementById('file')
function handle_files() {
if (!input.files.length) return
if (check_file_size(input, input.files[0])) {
const char_limit = innerWidth >= 768 ? 50 : 5;
if (check_file_sizet(input, input.files[0])) {
const char_limi = innerWidth >= 768 ? 50 : 10;
input.previousElementSibling.className = "";
input.previousElementSibling.textContent = input.files[0].name.substr(0, char_limit);