Update ui.js

This commit is contained in:
ErikrafT 2025-05-11 10:52:38 -03:00 committed by GitHub
parent 79bc463639
commit 4c67f00550
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -1017,7 +1017,7 @@ class ReceiveFileDialog extends ReceiveDialog {
hours = hours.length < 2 ? "0" + hours : hours; hours = hours.length < 2 ? "0" + hours : hours;
let minutes = now.getMinutes().toString(); let minutes = now.getMinutes().toString();
minutes = minutes.length < 2 ? "0" + minutes : minutes; minutes = minutes.length < 2 ? "0" + minutes : minutes;
filenameDownload = `PairDrop_files_${year+month+date}_${hours+minutes}.zip`; filenameDownload = `ErikrafTdrop_files_${year+month+date}_${hours+minutes}.zip`;
} catch (e) { } catch (e) {
console.error(e); console.error(e);
downloadZipped = false; downloadZipped = false;