1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/navidrome_ynh.git synced 2024-09-03 19:46:30 +02:00
This commit is contained in:
ericgaspar 2022-01-13 23:46:07 +01:00
parent 0ef1e4bfcc
commit 6fc4779575
No known key found for this signature in database
GPG key ID: 574F281483054D44
2 changed files with 4 additions and 4 deletions

View file

@ -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

View file

@ -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