From c34600aa99d324187f0969f08580e6d494b0cc6f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?E=CC=81ric=20Gaspar?= <46165813+ericgaspar@users.noreply.github.com> Date: Thu, 7 Nov 2024 10:26:55 +0100 Subject: [PATCH] cleaning --- scripts/install | 2 +- scripts/upgrade | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/install b/scripts/install index 2305f9b..21d74b3 100644 --- a/scripts/install +++ b/scripts/install @@ -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 don’t 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 diff --git a/scripts/upgrade b/scripts/upgrade index 585bf91..e293a39 100644 --- a/scripts/upgrade +++ b/scripts/upgrade @@ -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 don’t 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