This commit is contained in:
Éric Gaspar 2024-11-07 10:26:55 +01:00
parent b50f750c6d
commit c34600aa99
2 changed files with 3 additions and 3 deletions

View File

@ -10,7 +10,7 @@ source /usr/share/yunohost/helpers
custom_title="Send"
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."
custom_description="Encrypt and send files with a link that automatically expires."
ynh_app_setting_set --key=custom_description --value="$custom_description"
max_file_size=100

View File

@ -9,12 +9,12 @@ source /usr/share/yunohost/helpers
ynh_script_progression "Ensuring downward compatibility..."
if [ -z ${custom_title:-} ]; then
custom_title=Send
custom_title="Send"
ynh_app_setting_set --key=custom_title --value="$custom_title"
fi
if [ -z ${custom_description:-} ]; then
custom_description="Encrypt and send files with a link that automatically expires to ensure your important documents dont stay online forever."
custom_description="Encrypt and send files with a link that automatically expires."
ynh_app_setting_set --key=custom_description --value="$custom_description"
fi