Fix expiration text

This commit is contained in:
Booteille 2024-11-25 15:54:27 +01:00
parent 3661c0a50b
commit b895c8518b
No known key found for this signature in database
GPG Key ID: 0AB6C6CA01272646
1 changed files with 1 additions and 1 deletions

View File

@ -234,7 +234,7 @@ const populateFilesTable = () => {
: '<i class="small mdi-navigation-close"></i>';
const dlink = `${actionURL}d/${element.short}/${element.token}`;
const limit =
element.delay === 0
element.delay == 0
? i18n.noExpiration
: formatDate(element.delay * 86400 + element.created_at);
const created_at = formatDate(element.created_at);