This commit is contained in:
Éric Gaspar
2024-11-07 09:58:09 +01:00
parent 362200ef97
commit 1dcb43a607
4 changed files with 11 additions and 11 deletions

View File

@ -13,7 +13,7 @@ ynh_app_setting_set --key=custom_title --value="$custom_title"
custom_description="Encrypt and send files with a link that automatically expires to ensure your important documents dont stay online forever."
ynh_app_setting_set --key=custom_description --value="$custom_description"
max_file_size=2684354560
max_file_size=100
ynh_app_setting_set --key=max_file_size --value="$max_file_size"
max_download=100

View File

@ -19,12 +19,12 @@ if [ -z ${custom_description:-} ]; then
fi
if [ -z ${max_file_size:-} ]; then
max_file_size="2684354560"
max_file_size=100
ynh_app_setting_set --key=max_file_size --value="$max_file_size"
fi
if [ -z ${max_download:-} ]; then
max_download="100"
max_download=100
ynh_app_setting_set --key=max_download --value="$max_download"
fi