From 6fc47795755d06f85d8a63ce9a4cb479292c997a Mon Sep 17 00:00:00 2001 From: ericgaspar Date: Thu, 13 Jan 2022 23:46:07 +0100 Subject: [PATCH] Fix --- scripts/install | 4 ++-- scripts/upgrade | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/scripts/install b/scripts/install index a6685f9..ef49713 100644 --- a/scripts/install +++ b/scripts/install @@ -28,8 +28,8 @@ architecture=$YNH_ARCH app=$YNH_APP_INSTANCE_NAME scanner_extractor="taglib" -enable_downloads="1" -enable_animation="1" +enable_downloads="true" +enable_animation="true" #================================================= # CHECK IF THE APP CAN BE INSTALLED WITH THESE ARGS diff --git a/scripts/upgrade b/scripts/upgrade index 9c2d5f0..396e251 100644 --- a/scripts/upgrade +++ b/scripts/upgrade @@ -61,12 +61,12 @@ ynh_systemd_action --service_name=$app --action="stop" --log_path=systemd ynh_script_progression --message="Ensuring downward compatibility..." --weight=1 if [ -z "$enable_animation" ]; then - enable_animation="1" + enable_animation="true" ynh_app_setting_set --app=$app --key=enable_animation --value=$enable_animation fi if [ -z "$enable_downloads" ]; then - enable_downloads="1" + enable_downloads="true" ynh_app_setting_set --app=$app --key=enable_downloads --value=$enable_downloads fi