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